]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
* Ajusto al caso de uso
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index e1073f7e0eb3f0281d15ed9648fe4c5138e914c3..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;
                        }
@@ -86,13 +80,19 @@ public class App
                v.Run ();
        }
 
                v.Run ();
        }
 
+       public void OnMantenerPlanes (object o, EventArgs args)
+       {
+               VMantenerPlanes v = new VMantenerPlanes ();
+               v.Run ();
+       }
+
        public void OnRegistrarVisitas (object o, EventArgs args)
        {
        public void OnRegistrarVisitas (object o, EventArgs args)
        {
-               /*ABMGenerico g = new ABMGenerico (typeof(Plan));
+               ABMGenerico g = new ABMGenerico (typeof(Plan));
                g.Run ();
                g.Run ();
-               return;*/
-               VRegistrarVisitas v = new VRegistrarVisitas ();
-               v.Run ();
+               return;
+               /*VRegistrarVisitas v = new VRegistrarVisitas ();
+               v.Run ();*/
        }
 }
 
        }
 }