X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/01ba80dab5bcd0b57e7ba017186532d4219468c3..889da6ee2b0237902b33b5d719a8d2fa55a1a8c2:/demo/src/Main.cs?ds=inline diff --git a/demo/src/Main.cs b/demo/src/Main.cs index af31ee8..aa083cc 100644 --- a/demo/src/Main.cs +++ b/demo/src/Main.cs @@ -12,11 +12,36 @@ public class App 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) { + if ( args.Length > 0) { + if (args[0].Equals ("--test")) { + EjecutarTests(); + return; + } + Console.WriteLine ("Parametro no válido"); + return; + } new App (); } + #endregion Entry Point + public App () { Application.Init(); @@ -37,8 +62,13 @@ public class App { 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 (); @@ -50,30 +80,19 @@ public class App v.Run (); } - public void OnRegistrarVisitas (object o, EventArgs args) + public void OnMantenerPlanes (object o, EventArgs args) { - VRegistrarVisitas v = new VRegistrarVisitas (); + VMantenerPlanes v = new VMantenerPlanes (); 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 ();*/ } }