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";
94 db = Db4o.openFile("os.yap");
102 public void OnSalirActivate (object o, EventArgs args)
107 public void OnDeleteEvent(object o, DeleteEventArgs args)
112 public void OnIngresarSolicitud(object o, EventArgs args)
114 VIngresarSolicitud v = new VIngresarSolicitud ();
118 public void OnEmitirHojaDeRuta (object o, EventArgs args)
120 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
124 public void OnAgregarAfiliado (object o, EventArgs args)
126 VAgregarAfiliado v = new VAgregarAfiliado ();
130 public void OnMantenerPlanes (object o, EventArgs args)
132 VMantenerPlanes v = new VMantenerPlanes ();
136 public void OnMantenerPrestaciones (object o, EventArgs args)
138 VMantenerPrestaciones v = new VMantenerPrestaciones ();
142 public void OnMantenerPrestadores (object o, EventArgs args)
144 VMantenerPrestadores v = new VMantenerPrestadores ();
148 public void OnRegistrarVisitas (object o, EventArgs args)
150 VRegistrarVisitas v = new VRegistrarVisitas ();
154 public void OnPedidoAutorizacionManual (object o, EventArgs args)
156 VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
160 public void OnActualizarAutorizaciones (object o, EventArgs args)
162 VRevisarAutorizacionManual v = new VRevisarAutorizacionManual ();
166 public void OnConsultarAfiliado (object o, EventArgs args)
168 VConsultarAfiliado v = new VConsultarAfiliado ();