]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
* Borre una linea sin querer antes :P
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index ce035131de9ef0b4a19f2e6335bbcb975551b7fe..6c6b44ab526d42d52e919f134078c87ce20b4ee1 100644 (file)
@@ -5,6 +5,8 @@ using Gtk;
 using Glade;
 using Dominio.Afiliados;
 using Dominio.Planes;
 using Glade;
 using Dominio.Afiliados;
 using Dominio.Planes;
+using com.db4o;
+using com.db4o.query;
 
 public class App
 {
 
 public class App
 {
@@ -12,11 +14,53 @@ 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)
        {
+               ObjectContainer db;
+               db = Db4o.openFile("os.yap");
+               
+               Query query = db.query();
+    query.constrain(typeof(Persona));
+               ObjectSet result = query.execute();
+
+               Persona s; 
+               Console.WriteLine (result);
+               Console.WriteLine ("--");
+               while ((s = (Persona)result.next ()) != null)   {
+                       Console.Write (" -- ");
+                       Console.WriteLine ("{0} {1} {2} {3}", s.TipoDocumento, s.NroDocumento, s.Nombre, s.Apellido);
+               }
+               Console.WriteLine ("--");
+
+               db.close ();
+               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();
@@ -43,7 +87,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 ();
@@ -55,33 +99,23 @@ public class App
                v.Run ();
        }
 
                v.Run ();
        }
 
-       public void OnRegistrarVisitas (object o, EventArgs args)
+       public void OnAgregarAfiliado (object o, EventArgs args)
        {
        {
-               /*ABMGenerico g = new ABMGenerico (typeof(Plan));
-               g.Run ();
-               return;*/
-               VRegistrarVisitas v = new VRegistrarVisitas ();
+               VAgregarAfiliado v = new VAgregarAfiliado ();
                v.Run ();
        }
 
                v.Run ();
        }
 
-       public void OnConsultarAfiliadoClose (object o, EventArgs args)
-       {
-               wConsultarAfiliado.Destroy ();
-       }
 
 
-       public void OnVerAfiliado (object o, EventArgs args)
+       public void OnMantenerPlanes (object o, EventArgs args)
        {
        {
+               VMantenerPlanes v = new VMantenerPlanes ();
+               v.Run ();
        }
        }
-       
-       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);
-               }
+               VRegistrarVisitas v = new VRegistrarVisitas ();
+               v.Run ();
        }
 }
 
        }
 }