]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
- Property FechaBaja para Prestacion
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index 0a7bce07f7ae8adb6a8cb3fde74363ee8c51a9a8..eefd34d6b4f0b33b87a23bb2eb513235a26be060 100644 (file)
@@ -52,16 +52,13 @@ public class App
                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 ()
        {
-               
-               #warning Descomentar para inicializar la base de datos con algunos valores de prueba !
-               return;
-
                /* Algunas categorias */
                Categoria c1 = new Categoria ();
                c1.Codigo = 1;
@@ -128,15 +125,22 @@ public class App
                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)