]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
mejores busquedas
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index 6c6b44ab526d42d52e919f134078c87ce20b4ee1..1b55c45aeffd037c065f90eee3d1a0a136284b54 100644 (file)
@@ -5,6 +5,7 @@ using Gtk;
 using Glade;
 using Dominio.Afiliados;
 using Dominio.Planes;
 using Glade;
 using Dominio.Afiliados;
 using Dominio.Planes;
+using Dominio.Autorizaciones;
 using com.db4o;
 using com.db4o.query;
 
 using com.db4o;
 using com.db4o.query;
 
@@ -31,23 +32,6 @@ public class App
 
        static public void Main (string[] args)
        {
 
        static public void Main (string[] args)
        {
-               ObjectContainer db;
-               db = Db4o.openFile("os.yap");
-               
-               Query query = db.query();
-    query.constrain(typeof(Persona));
-               ObjectSet result = query.execute();
-
-               Persona s; 
-               Console.WriteLine (result);
-               Console.WriteLine ("--");
-               while ((s = (Persona)result.next ()) != null)   {
-                       Console.Write (" -- ");
-                       Console.WriteLine ("{0} {1} {2} {3}", s.TipoDocumento, s.NroDocumento, s.Nombre, s.Apellido);
-               }
-               Console.WriteLine ("--");
-
-               db.close ();
                if ( args.Length > 0) {
                        if (args[0].Equals ("--test")) {
                                EjecutarTests();
                if ( args.Length > 0) {
                        if (args[0].Equals ("--test")) {
                                EjecutarTests();
@@ -68,13 +52,49 @@ public class App
                Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
                gxml.Autoconnect (this);
 
                Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null);
                gxml.Autoconnect (this);
 
-               InitDemo ();
+               #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
+               /* InitDemo (); */
                Application.Run();
        }
        
        private void InitDemo ()
        {
                Application.Run();
        }
        
        private void InitDemo ()
        {
+               /* Algunas categorias */
+               Categoria c1 = new Categoria ();
+               c1.Codigo = 1;
+               c1.Nombre = "Odontologia";
+
+               Categoria c2 = new Categoria ();
+               c2.Codigo = 2;
+               c2.Nombre = "Traumatologia";
+
+               Prestacion p1 = new Prestacion ();
+               p1.Codigo = "101010";
+               p1.Nombre = "Extracion Muelas de Juicio";
+               p1.Categoria = c1;
+
+               Prestacion p2 = new Prestacion ();
+               p2.Codigo = "101011";
+               p2.Nombre = "Aplique de Fluor";
+               p2.Categoria = c1;
+
+               Prestacion p3 = new Prestacion ();
+               p3.Codigo = "201010";
+               p3.Nombre = "Yeso parcial";
+               p3.Categoria = c2;
+
+               Prestacion p4 = new Prestacion ();
+               p4.Codigo = "201011";
+               p4.Nombre = "Aplique clavos fractura multiple";
+               p4.Categoria = c2;
 
 
+               ObjectContainer db;
+               db = Db4o.openFile("os.yap");
+               db.set (p1);
+               db.set (p2);
+               db.set (p3);
+               db.set (p4);
+               db.close ();
        }
 
        public void OnSalirActivate (object o, EventArgs args)
        }
 
        public void OnSalirActivate (object o, EventArgs args)
@@ -105,17 +125,40 @@ public class App
                v.Run ();
        }
 
                v.Run ();
        }
 
-
        public void OnMantenerPlanes (object o, EventArgs args)
        {
                VMantenerPlanes v = new VMantenerPlanes ();
                v.Run ();
        }
 
        public void OnMantenerPlanes (object o, EventArgs args)
        {
                VMantenerPlanes v = new VMantenerPlanes ();
                v.Run ();
        }
 
+       public void OnMantenerPrestaciones (object o, EventArgs args)
+       {
+               VMantenerPrestaciones v = new VMantenerPrestaciones ();
+               v.Run ();
+       }
+
+       public void OnMantenerPrestadores (object o, EventArgs args)
+       {
+               VMantenerPrestadores v = new VMantenerPrestadores ();
+               v.Run ();
+       }
+
        public void OnRegistrarVisitas (object o, EventArgs args)
        {
                VRegistrarVisitas v = new VRegistrarVisitas ();
                v.Run ();
        }
        public void OnRegistrarVisitas (object o, EventArgs args)
        {
                VRegistrarVisitas v = new VRegistrarVisitas ();
                v.Run ();
        }
+
+       public void OnPedidoAutorizacionManual (object o, EventArgs args)
+       {
+               VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
+               v.Run ();
+       }
+
+       public void OnConsultarAfiliado (object o, EventArgs args)
+       {
+               VConsultarAfiliado v = new VConsultarAfiliado ();
+               v.Run ();
+       }
 }
 
 }