3 using System.Collections;
6 using Dominio.Afiliados;
8 using Dominio.Autorizaciones;
14 Dialog wConsultarAfiliado;
20 private static void EjecutarTests()
22 Tests.TestsAutorizacion.Instancia.EjecutarTodos();
26 //Acá pueden agregar más, si quieren
33 static public void Main (string[] args)
35 if ( args.Length > 0) {
36 if (args[0].Equals ("--test")) {
40 Console.WriteLine ("Parametro no válido");
46 #endregion Entry Point
52 Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
53 gxml.Autoconnect (this);
55 #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
60 private void InitDemo ()
62 /* Algunas categorias */
63 Categoria c1 = new Categoria ();
65 c1.Nombre = "Odontologia";
67 Categoria c2 = new Categoria ();
69 c2.Nombre = "Traumatologia";
71 Prestacion p1 = new Prestacion ();
73 p1.Nombre = "Extracion Muelas de Juicio";
76 Prestacion p2 = new Prestacion ();
78 p2.Nombre = "Aplique de Fluor";
81 Prestacion p3 = new Prestacion ();
83 p3.Nombre = "Yeso parcial";
86 Prestacion p4 = new Prestacion ();
88 p4.Nombre = "Aplique clavos fractura multiple";
92 db = Db4o.openFile("os.yap");
100 public void OnSalirActivate (object o, EventArgs args)
105 public void OnDeleteEvent(object o, DeleteEventArgs args)
110 public void OnIngresarSolicitud(object o, EventArgs args)
112 VIngresarSolicitud v = new VIngresarSolicitud ();
116 public void OnEmitirHojaDeRuta (object o, EventArgs args)
118 VEmitirHojaDeRuta v = new VEmitirHojaDeRuta ();
122 public void OnAgregarAfiliado (object o, EventArgs args)
124 VAgregarAfiliado v = new VAgregarAfiliado ();
128 public void OnMantenerPlanes (object o, EventArgs args)
130 VMantenerPlanes v = new VMantenerPlanes ();
134 public void OnMantenerPrestaciones (object o, EventArgs args)
136 VMantenerPrestaciones v = new VMantenerPrestaciones ();
140 public void OnMantenerPrestadores (object o, EventArgs args)
142 VMantenerPrestadores v = new VMantenerPrestadores ();
146 public void OnRegistrarVisitas (object o, EventArgs args)
148 VRegistrarVisitas v = new VRegistrarVisitas ();