namespace Controlador { namespace Afiliacion { using Dominio.Autorizaciones; using Dominio; using com.db4o; using com.db4o.query; using System; using System.Collections; public class PrestacionesController : Controller { public ArrayList Categorias () { Categoria c = new Categoria (); c.Codigo = 0; c.Nombre = null; ObjectSet result = Db.get (c); ArrayList lst = ObjectSetToArrayList (result); return lst; } public ArrayList Prestaciones (string categoria) { Categoria c = new Categoria (); c.Codigo = 0; c.Nombre = categoria; ObjectSet result = Db.get (c); ArrayList lst = ObjectSetToArrayList (result); c = (Categoria)lst[0]; Prestacion p = new Prestacion (); p.Categoria = c; result = Db.get (p); return lst = ObjectSetToArrayList (result); } } } }