]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Main.cs
24a7a48a5192337b40667a114b12e772e1206299
[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                 InitDemo ();
56                 Application.Run();
57         }
58         
59         private void InitDemo ()
60         {
61                 
62                 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
63                 return;
64
65                 /* Algunas categorias */
66                 Categoria c1 = new Categoria ();
67                 c1.Codigo = 1;
68                 c1.Nombre = "Odontologia";
69
70                 Categoria c2 = new Categoria ();
71                 c2.Codigo = 2;
72                 c2.Nombre = "Traumatologia";
73
74                 Prestacion p1 = new Prestacion ();
75                 p1.Codigo = "101010";
76                 p1.Nombre = "Extracion Muelas de Juicio";
77                 p1.Categoria = c1;
78
79                 Prestacion p2 = new Prestacion ();
80                 p2.Codigo = "101011";
81                 p2.Nombre = "Aplique de Fluor";
82                 p2.Categoria = c1;
83
84                 Prestacion p3 = new Prestacion ();
85                 p3.Codigo = "201010";
86                 p3.Nombre = "Yeso parcial";
87                 p3.Categoria = c2;
88
89                 Prestacion p4 = new Prestacion ();
90                 p4.Codigo = "201011";
91                 p4.Nombre = "Aplique clavos fractura multiple";
92                 p4.Categoria = c2;
93
94                 ObjectContainer db;
95                 db = Db4o.openFile("os.yap");
96                 db.set (p1);
97                 db.set (p2);
98                 db.set (p3);
99                 db.set (p4);
100                 db.close ();
101         }
102
103         public void OnSalirActivate (object o, EventArgs args)
104         {
105                 Application.Quit ();
106         }
107         
108         public void OnDeleteEvent(object o, DeleteEventArgs args)
109         {
110                 Application.Quit ();
111         }
112
113         public void OnIngresarSolicitud(object o, EventArgs args)
114         {
115                 VIngresarSolicitud v = new VIngresarSolicitud ();
116                 v.Run ();
117         }
118
119         public void OnEmitirHojaDeRuta (object o, EventArgs args)
120         {
121                 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
122                 v.Run ();
123         }
124
125         public void OnAgregarAfiliado (object o, EventArgs args)
126         {
127                 VAgregarAfiliado v = new VAgregarAfiliado ();
128                 v.Run ();
129         }
130
131
132         public void OnMantenerPlanes (object o, EventArgs args)
133         {
134                 VMantenerPlanes v = new VMantenerPlanes ();
135                 v.Run ();
136         }
137
138         public void OnMantenerPrestadores (object o, EventArgs args)
139         {
140                 VBuscarPrestacion v = new VBuscarPrestacion ();
141                 v.Run ();
142         }
143
144         public void OnRegistrarVisitas (object o, EventArgs args)
145         {
146                 VRegistrarVisitas v = new VRegistrarVisitas ();
147                 v.Run ();
148         }
149 }
150