]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
(no commit message)
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index 65f949820341f4498b54764e76299f0d8043973c..aa083cc74343ed5f6d29aa2632288ffdd891be63 100644 (file)
@@ -14,11 +14,6 @@ public class App
 
        #region Tests
 
 
        #region Tests
 
-       /// <summary>\r
-       /// Decide si se corre la demo ó los tests automatizados\r
-       /// </summary>
-       private static bool testing = false;
-
        private static void EjecutarTests()
        {
                Tests.TestsAutorizacion.Instancia.EjecutarTodos();
        private static void EjecutarTests()
        {
                Tests.TestsAutorizacion.Instancia.EjecutarTodos();
@@ -36,7 +31,6 @@ public class App
        {
                if ( args.Length > 0) {
                        if (args[0].Equals ("--test")) {
        {
                if ( args.Length > 0) {
                        if (args[0].Equals ("--test")) {
-                               testing = true;
                                EjecutarTests();
                                return;
                        }
                                EjecutarTests();
                                return;
                        }
@@ -74,7 +68,7 @@ public class App
                Application.Quit ();
        }
 
                Application.Quit ();
        }
 
-       public void OnConsultarAfiliado (object o, EventArgs args)
+       public void OnIngresarSolicitud(object o, EventArgs args)
        {
                VIngresarSolicitud v = new VIngresarSolicitud ();
                v.Run ();
        {
                VIngresarSolicitud v = new VIngresarSolicitud ();
                v.Run ();
@@ -86,33 +80,19 @@ public class App
                v.Run ();
        }
 
                v.Run ();
        }
 
-       public void OnRegistrarVisitas (object o, EventArgs args)
+       public void OnMantenerPlanes (object o, EventArgs args)
        {
        {
-               /*ABMGenerico g = new ABMGenerico (typeof(Plan));
-               g.Run ();
-               return;*/
-               VRegistrarVisitas v = new VRegistrarVisitas ();
+               VMantenerPlanes v = new VMantenerPlanes ();
                v.Run ();
        }
 
                v.Run ();
        }
 
-       public void OnConsultarAfiliadoClose (object o, EventArgs args)
-       {
-               wConsultarAfiliado.Destroy ();
-       }
-
-       public void OnVerAfiliado (object o, EventArgs args)
-       {
-       }
-       
-       public void OnBuscarAfiliado (object o, EventArgs args)
+       public void OnRegistrarVisitas (object o, EventArgs args)
        {
        {
-               Entry codigo = (Entry)xmla.GetWidget ("s_codigo");
-               TreeView lista = (TreeView)xmla.GetWidget ("lista");
-               TreeStore store = (TreeStore)lista.Model;
-               foreach (Afiliado a in lst) {
-                       if (a.Codigo == Int32.Parse (codigo.Text))
-                               store.AppendValues (String.Format("{0}", a.Codigo), a.Nombre);
-               }
+               ABMGenerico g = new ABMGenerico (typeof(Plan));
+               g.Run ();
+               return;
+               /*VRegistrarVisitas v = new VRegistrarVisitas ();
+               v.Run ();*/
        }
 }
 
        }
 }