]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
* Pasos finales ... la pucha que esta query me hace renegar :D
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index e1073f7e0eb3f0281d15ed9648fe4c5138e914c3..3f1e69de1046275b082489bfd2e0eac919f8bc48 100644 (file)
@@ -14,11 +14,6 @@ public class App
 
        #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();
@@ -36,7 +31,6 @@ public class App
        {
                if ( args.Length > 0) {
                        if (args[0].Equals ("--test")) {
-                               testing = true;
                                EjecutarTests();
                                return;
                        }
@@ -86,11 +80,21 @@ public class App
                v.Run ();
        }
 
+       public void OnAgregarAfiliado (object o, EventArgs args)
+       {
+               VAgregarAfiliado v = new VAgregarAfiliado ();
+               v.Run ();
+       }
+
+
+       public void OnMantenerPlanes (object o, EventArgs args)
+       {
+               VMantenerPlanes v = new VMantenerPlanes ();
+               v.Run ();
+       }
+
        public void OnRegistrarVisitas (object o, EventArgs args)
        {
-               /*ABMGenerico g = new ABMGenerico (typeof(Plan));
-               g.Run ();
-               return;*/
                VRegistrarVisitas v = new VRegistrarVisitas ();
                v.Run ();
        }