2 namespace Controlador {
5 using Dominio.Autorizaciones;
11 using System.Collections;
13 public class PrestacionesController : Controller
16 public ArrayList Categorias ()
18 Categoria c = new Categoria ();
22 ObjectSet result = Db.get (c);
23 ArrayList lst = ObjectSetToArrayList (result);
28 public ArrayList Prestaciones (string categoria)
30 Categoria c = new Categoria ();
34 ObjectSet result = Db.get (c);
35 ArrayList lst = ObjectSetToArrayList (result);
36 c = (Categoria)lst[0];
38 Prestacion p = new Prestacion ();
42 return lst = ObjectSetToArrayList (result);