]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Main.cs
ahi va la 1era version de AUtorizacion controller... le falta bastanton :P
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
1
2 using System;
3 using System.Collections;
4 using Gtk;
5 using Glade;
6 using Dominio.Afiliados;
7 using Dominio.Planes;
8 using Dominio.Autorizaciones;
9 using com.db4o;
10 using com.db4o.query;
11
12 public class App
13 {
14         Dialog wConsultarAfiliado;
15         ArrayList lst;
16         Glade.XML xmla;
17
18         #region Tests
19
20         private static void EjecutarTests()
21         {
22                 Tests.TestsAutorizacion.Instancia.EjecutarTodos();
23                 
24                 Console.Read();
25
26                 //Acá pueden agregar más, si quieren
27         }
28
29         #endregion Tests
30
31         #region Entry Point
32
33         static public void Main (string[] args)
34         {
35                 if ( args.Length > 0) {
36                         if (args[0].Equals ("--test")) {
37                                 EjecutarTests();
38                                 return;
39                         }
40                         Console.WriteLine ("Parametro no válido");
41                         return;
42                 }
43                 new App ();
44         }
45
46         #endregion Entry Point
47
48         public App ()
49         {
50                 Application.Init();
51
52                 Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
53                 gxml.Autoconnect (this);
54
55                 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
56                 /* InitDemo (); */
57                 Application.Run();
58         }
59         
60         private void InitDemo ()
61         {
62                 /* Algunas categorias */
63                 Categoria c1 = new Categoria ();
64                 c1.Codigo = 1;
65                 c1.Nombre = "Odontologia";
66
67                 Categoria c2 = new Categoria ();
68                 c2.Codigo = 2;
69                 c2.Nombre = "Traumatologia";
70
71                 Prestacion p1 = new Prestacion ();
72                 p1.Codigo = "101010";
73                 p1.Nombre = "Extracion Muelas de Juicio";
74                 p1.Categoria = c1;
75
76                 Prestacion p2 = new Prestacion ();
77                 p2.Codigo = "101011";
78                 p2.Nombre = "Aplique de Fluor";
79                 p2.Categoria = c1;
80
81                 Prestacion p3 = new Prestacion ();
82                 p3.Codigo = "201010";
83                 p3.Nombre = "Yeso parcial";
84                 p3.Categoria = c2;
85
86                 Prestacion p4 = new Prestacion ();
87                 p4.Codigo = "201011";
88                 p4.Nombre = "Aplique clavos fractura multiple";
89                 p4.Categoria = c2;
90
91                 ObjectContainer db;
92                 db = Db4o.openFile("os.yap");
93                 db.set (p1);
94                 db.set (p2);
95                 db.set (p3);
96                 db.set (p4);
97                 db.close ();
98         }
99
100         public void OnSalirActivate (object o, EventArgs args)
101         {
102                 Application.Quit ();
103         }
104         
105         public void OnDeleteEvent(object o, DeleteEventArgs args)
106         {
107                 Application.Quit ();
108         }
109
110         public void OnIngresarSolicitud(object o, EventArgs args)
111         {
112                 VIngresarSolicitud v = new VIngresarSolicitud ();
113                 v.Run ();
114         }
115
116         public void OnEmitirHojaDeRuta (object o, EventArgs args)
117         {
118                 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
119                 v.Run ();
120         }
121
122         public void OnAgregarAfiliado (object o, EventArgs args)
123         {
124                 VAgregarAfiliado v = new VAgregarAfiliado ();
125                 v.Run ();
126         }
127
128         public void OnMantenerPlanes (object o, EventArgs args)
129         {
130                 VMantenerPlanes v = new VMantenerPlanes ();
131                 v.Run ();
132         }
133
134         public void OnMantenerPrestaciones (object o, EventArgs args)
135         {
136                 VMantenerPrestaciones v = new VMantenerPrestaciones ();
137                 v.Run ();
138         }
139
140         public void OnMantenerPrestadores (object o, EventArgs args)
141         {
142                 VMantenerPrestadores v = new VMantenerPrestadores ();
143                 v.Run ();
144         }
145
146         public void OnRegistrarVisitas (object o, EventArgs args)
147         {
148                 VRegistrarVisitas v = new VRegistrarVisitas ();
149                 v.Run ();
150         }
151 }
152