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 Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
30 rpc.InsertarDatosNecesarios();
32 rpc.procesarInfoRecibida();
35 //Acá pueden agregar más, si quieren
42 static public void Main (string[] args)
44 if ( args.Length > 0) {
45 if (args[0].Equals ("--test")) {
49 Console.WriteLine ("Parametro no válido");
55 #endregion Entry Point
61 Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
62 gxml.Autoconnect (this);
64 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
65 logo.FromFile = "logo.png";
70 private void InitDemo ()
72 /* Algunas categorias */
73 Categoria c1 = new Categoria ();
75 c1.Nombre = "Odontologia";
77 Categoria c2 = new Categoria ();
79 c2.Nombre = "Traumatologia";
81 Prestacion p1 = new Prestacion ();
83 p1.Nombre = "Extracion Muelas de Juicio";
86 Prestacion p2 = new Prestacion ();
88 p2.Nombre = "Aplique de Fluor";
91 Prestacion p3 = new Prestacion ();
93 p3.Nombre = "Yeso parcial";
96 Prestacion p4 = new Prestacion ();
98 p4.Nombre = "Aplique clavos fractura multiple";
101 Prestador prestador = new Prestador ("30-11223366-0");
102 prestador.Nombre = "DePrueba";
103 prestador.Email = "DePrueba";
105 p1.AgregarPrestador (prestador);
106 p2.AgregarPrestador (prestador);
107 p3.AgregarPrestador (prestador);
108 p4.AgregarPrestador (prestador);
111 db = Db4o.openFile("os.yap");
119 public void OnSalirActivate (object o, EventArgs args)
124 public void OnDeleteEvent(object o, DeleteEventArgs args)
129 public void OnIngresarSolicitud(object o, EventArgs args)
131 VIngresarSolicitud v = new VIngresarSolicitud ();
135 public void OnEmitirHojaDeRuta (object o, EventArgs args)
137 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
141 public void OnAgregarAfiliado (object o, EventArgs args)
143 VAgregarAfiliado v = new VAgregarAfiliado ();
147 public void OnMantenerPlanes (object o, EventArgs args)
149 VMantenerPlanes v = new VMantenerPlanes ();
153 public void OnMantenerPrestaciones (object o, EventArgs args)
155 VMantenerPrestaciones v = new VMantenerPrestaciones ();
159 public void OnMantenerPrestadores (object o, EventArgs args)
161 VMantenerPrestadores v = new VMantenerPrestadores ();
165 public void OnRegistrarVisitas (object o, EventArgs args)
167 VRegistrarVisitas v = new VRegistrarVisitas ();
171 public void OnPedidoAutorizacionManual (object o, EventArgs args)
173 VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
177 public void OnActualizarAutorizaciones (object o, EventArgs args)
179 VRevisarAutorizacionManual v = new VRevisarAutorizacionManual ();
183 public void OnConsultarAfiliado (object o, EventArgs args)
185 VConsultarAfiliado v = new VConsultarAfiliado ();
189 public void OnConsultarAutorizaciones (object o, EventArgs args)
191 VConsultarAutorizaciones v = new VConsultarAutorizaciones ();
195 public void OnPedidoAutorizacionAutomatica (object o, EventArgs args)
199 public void OnProcesarInformes (object o, EventArgs args)
201 /* Recibir y Cotejar */
202 Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
205 //rpc.InsertarDatosNecesarios();
206 rpc.procesarInfoRecibida();