]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Controlador/PrestacionesController.cs
Para que compile
[z.facultad/75.10/miklolife.git] / demo / src / Controlador / PrestacionesController.cs
1
2 namespace Controlador {
3 namespace Afiliacion {
4
5 using Dominio.Autorizaciones;
6 using Dominio;
7 using com.db4o;
8 using com.db4o.query;
9
10 using System;
11 using System.Collections;
12
13 public class PrestacionesController : Controller 
14 {
15
16         public ArrayList Categorias ()
17         {
18                 Categoria c = new Categoria ();
19                 c.Codigo = 0;
20                 c.Nombre = null;
21
22                 ObjectSet result = Db.get (c);
23                 ArrayList lst = ObjectSetToArrayList (result);
24
25                 return lst;
26         }
27
28         public ArrayList Prestaciones (string categoria)
29         {
30                 Categoria c = new Categoria ();
31                 c.Codigo = 0;
32                 c.Nombre = categoria;
33
34                 ObjectSet result = Db.get (c);
35                 ArrayList lst = ObjectSetToArrayList (result);
36                 c = (Categoria)lst[0];
37
38                 Prestacion p = new Prestacion ();
39                 p.Categoria = c;
40
41                 result = Db.get (p);
42                 return lst = ObjectSetToArrayList (result);
43         }
44 }
45
46 }
47 }
48