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);
+ }
}
}