]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
- Actualizacion solucion VS con archivos de Rick
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index 6374454076347310d48287f85686c5948547318c..8b5f7e76a6c2d7ce1b89cdb957650bd376848d6b 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,6 +54,7 @@ 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 !
+               logo.FromFile = "logo.png";
                /* InitDemo (); */
                Application.Run();
        }
                /* InitDemo (); */
                Application.Run();
        }
@@ -125,15 +127,22 @@ 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)
        {
        public void OnMantenerPrestadores (object o, EventArgs args)
        {
+               VMantenerPrestadores v = new VMantenerPrestadores ();
+               v.Run ();
        }
 
        public void OnRegistrarVisitas (object o, EventArgs args)
        }
 
        public void OnRegistrarVisitas (object o, EventArgs args)
@@ -141,5 +150,23 @@ 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 ();
+       }
 }
 
 }