]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
Para guille :)
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index c535d851ac9cdb8e018807387be43108fe9e9931..1c908aca3ee88bdbdff5d6f75360cb3d7fd79d35 100644 (file)
@@ -14,6 +14,7 @@ public class App
        Dialog wConsultarAfiliado;
        ArrayList lst;
        Glade.XML xmla;
        Dialog wConsultarAfiliado;
        ArrayList lst;
        Glade.XML xmla;
+       [Widget] Image logo;
 
        #region Tests
 
 
        #region Tests
 
@@ -53,7 +54,8 @@ public class App
                gxml.Autoconnect (this);
 
                #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
                gxml.Autoconnect (this);
 
                #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
-               /* InitDemo (); */
+               logo.FromFile = "logo.png";
+               /*InitDemo ();*/
                Application.Run();
        }
        
                Application.Run();
        }
        
@@ -88,6 +90,15 @@ public class App
                p4.Nombre = "Aplique clavos fractura multiple";
                p4.Categoria = c2;
 
                p4.Nombre = "Aplique clavos fractura multiple";
                p4.Categoria = c2;
 
+               Prestador prestador = new Prestador ("30-11223366-0");
+               prestador.Nombre = "DePrueba";
+               prestador.Email = "DePrueba";
+
+               p1.AgregarPrestador (prestador);
+               p2.AgregarPrestador (prestador);
+               p3.AgregarPrestador (prestador);
+               p4.AgregarPrestador (prestador);
+
                ObjectContainer db;
                db = Db4o.openFile("os.yap");
                db.set (p1);
                ObjectContainer db;
                db = Db4o.openFile("os.yap");
                db.set (p1);
@@ -125,13 +136,18 @@ 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 ();
        public void OnMantenerPrestadores (object o, EventArgs args)
        {
                VMantenerPrestadores v = new VMantenerPrestadores ();
@@ -143,5 +159,39 @@ public class App
                VRegistrarVisitas v = new VRegistrarVisitas ();
                v.Run ();
        }
                VRegistrarVisitas v = new VRegistrarVisitas ();
                v.Run ();
        }
+
+       public void OnPedidoAutorizacionManual (object o, EventArgs args)
+       {
+               VPedidoAutorizacionManual v = new VPedidoAutorizacionManual ();
+               v.Run ();
+       }
+
+       public void OnActualizarAutorizaciones (object o, EventArgs args)
+       {
+               VRevisarAutorizacionManual v = new VRevisarAutorizacionManual ();
+               v.Run ();
+       }
+
+       public void OnConsultarAfiliado (object o, EventArgs args)
+       {
+               VConsultarAfiliado v = new VConsultarAfiliado ();
+               v.Run ();
+       }
+
+       public void OnConsultarAutorizaciones (object o, EventArgs args)
+       {
+               VConsultarAutorizaciones v = new VConsultarAutorizaciones ();
+               v.Run ();
+       }
+
+       public void OnPedidoAutorizacionAutomatica (object o, EventArgs args)
+       {
+       }
+
+       public void OnProcesarInformes (object o, EventArgs args)
+       {
+               /* PARA VOS GUILLE !!! */
+       }
+       
 }
 
 }