]> 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 56637c56585f6f53e0d22d210db6bd23fdd9321e..aa083cc74343ed5f6d29aa2632288ffdd891be63 100644 (file)
@@ -12,11 +12,36 @@ public class App
        ArrayList lst;
        Glade.XML xmla;
 
        ArrayList lst;
        Glade.XML xmla;
 
+       #region Tests
+
+       private static void EjecutarTests()
+       {
+               Tests.TestsAutorizacion.Instancia.EjecutarTodos();
+               
+               Console.Read();
+
+               //Acá pueden agregar más, si quieren
+       }
+
+       #endregion Tests
+
+       #region Entry Point
+
        static public void Main (string[] args)
        {
        static public void Main (string[] args)
        {
+               if ( args.Length > 0) {
+                       if (args[0].Equals ("--test")) {
+                               EjecutarTests();
+                               return;
+                       }
+                       Console.WriteLine ("Parametro no válido");
+                       return;
+               }
                new App ();
        }
 
                new App ();
        }
 
+       #endregion Entry Point
+
        public App ()
        {
                Application.Init();
        public App ()
        {
                Application.Init();
@@ -37,8 +62,13 @@ public class App
        {
                Application.Quit ();
        }
        {
                Application.Quit ();
        }
+       
+       public void OnDeleteEvent(object o, DeleteEventArgs args)
+       {
+               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 ();
@@ -50,24 +80,19 @@ public class App
                v.Run ();
        }
 
                v.Run ();
        }
 
-       public void OnConsultarAfiliadoClose (object o, EventArgs args)
+       public void OnMantenerPlanes (object o, EventArgs args)
        {
        {
-               wConsultarAfiliado.Destroy ();
+               VMantenerPlanes v = new VMantenerPlanes ();
+               v.Run ();
        }
 
        }
 
-       public void OnVerAfiliado (object o, EventArgs args)
+       public void OnRegistrarVisitas (object o, EventArgs args)
        {
        {
-       }
-       
-       public void OnBuscarAfiliado (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 ();*/
        }
 }
 
        }
 }