3 using System.Collections;
6 using Dominio.Afiliados;
8 using Dominio.Autorizaciones;
14 Dialog wConsultarAfiliado;
21 private static void EjecutarTests()
23 Tests.TestsAutorizacion.Instancia.EjecutarTodos();
27 //Acá pueden agregar más, si quieren
34 static public void Main (string[] args)
36 if ( args.Length > 0) {
37 if (args[0].Equals ("--test")) {
41 Console.WriteLine ("Parametro no válido");
47 #endregion Entry Point
53 Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
54 gxml.Autoconnect (this);
56 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
57 logo.FromFile = "logo.png";
62 private void InitDemo ()
64 /* Algunas categorias */
65 Categoria c1 = new Categoria ();
67 c1.Nombre = "Odontologia";
69 Categoria c2 = new Categoria ();
71 c2.Nombre = "Traumatologia";
73 Prestacion p1 = new Prestacion ();
75 p1.Nombre = "Extracion Muelas de Juicio";
78 Prestacion p2 = new Prestacion ();
80 p2.Nombre = "Aplique de Fluor";
83 Prestacion p3 = new Prestacion ();
85 p3.Nombre = "Yeso parcial";
88 Prestacion p4 = new Prestacion ();
90 p4.Nombre = "Aplique clavos fractura multiple";
93 Prestador prestador = new Prestador ("30-11223366-0");
94 prestador.Nombre = "DePrueba";
95 prestador.Email = "DePrueba";
97 p1.AgregarPrestador (prestador);
98 p2.AgregarPrestador (prestador);
99 p3.AgregarPrestador (prestador);
100 p4.AgregarPrestador (prestador);
103 db = Db4o.openFile("os.yap");
111 public void OnSalirActivate (object o, EventArgs args)
116 public void OnDeleteEvent(object o, DeleteEventArgs args)
121 public void OnIngresarSolicitud(object o, EventArgs args)
123 VIngresarSolicitud v = new VIngresarSolicitud ();
127 public void OnEmitirHojaDeRuta (object o, EventArgs args)
129 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
133 public void OnAgregarAfiliado (object o, EventArgs args)
135 VAgregarAfiliado v = new VAgregarAfiliado ();
139 public void OnMantenerPlanes (object o, EventArgs args)
141 VMantenerPlanes v = new VMantenerPlanes ();
145 public void OnMantenerPrestaciones (object o, EventArgs args)
147 VMantenerPrestaciones v = new VMantenerPrestaciones ();
151 public void OnMantenerPrestadores (object o, EventArgs args)
153 VMantenerPrestadores v = new VMantenerPrestadores ();
157 public void OnRegistrarVisitas (object o, EventArgs args)
159 VRegistrarVisitas v = new VRegistrarVisitas ();
163 public void OnPedidoAutorizacionManual (object o, EventArgs args)
165 VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
169 public void OnActualizarAutorizaciones (object o, EventArgs args)
171 VRevisarAutorizacionManual v = new VRevisarAutorizacionManual ();
175 public void OnConsultarAfiliado (object o, EventArgs args)
177 VConsultarAfiliado v = new VConsultarAfiliado ();
181 public void OnConsultarAutorizaciones (object o, EventArgs args)
183 VConsultarAutorizaciones v = new VConsultarAutorizaciones ();