X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/f8446a6723f09b3092929479b4307f72fcd03425..afbf89745cac12021bfe71bc6739dbd9459cacc0:/demo/src/Main.cs diff --git a/demo/src/Main.cs b/demo/src/Main.cs index e1073f7..8b5f7e7 100644 --- a/demo/src/Main.cs +++ b/demo/src/Main.cs @@ -5,20 +5,19 @@ using Gtk; using Glade; using Dominio.Afiliados; using Dominio.Planes; +using Dominio.Autorizaciones; +using com.db4o; +using com.db4o.query; public class App { Dialog wConsultarAfiliado; ArrayList lst; Glade.XML xmla; + [Widget] Image logo; #region Tests - /// - /// Decide si se corre la demo รณ los tests automatizados - /// - private static bool testing = false; - private static void EjecutarTests() { Tests.TestsAutorizacion.Instancia.EjecutarTodos(); @@ -36,7 +35,6 @@ public class App { if ( args.Length > 0) { if (args[0].Equals ("--test")) { - testing = true; EjecutarTests(); return; } @@ -55,13 +53,50 @@ public class App Glade.XML gxml = new Glade.XML (null, "main.glade", "main", null); gxml.Autoconnect (this); - InitDemo (); + #warning Descomentar para inicializar la base de datos con algunos valores de prueba ! + logo.FromFile = "logo.png"; + /* InitDemo (); */ Application.Run(); } private void InitDemo () { - + /* Algunas categorias */ + Categoria c1 = new Categoria (); + c1.Codigo = 1; + c1.Nombre = "Odontologia"; + + Categoria c2 = new Categoria (); + c2.Codigo = 2; + c2.Nombre = "Traumatologia"; + + Prestacion p1 = new Prestacion (); + p1.Codigo = "101010"; + p1.Nombre = "Extracion Muelas de Juicio"; + p1.Categoria = c1; + + Prestacion p2 = new Prestacion (); + p2.Codigo = "101011"; + p2.Nombre = "Aplique de Fluor"; + p2.Categoria = c1; + + Prestacion p3 = new Prestacion (); + p3.Codigo = "201010"; + p3.Nombre = "Yeso parcial"; + p3.Categoria = c2; + + Prestacion p4 = new Prestacion (); + p4.Codigo = "201011"; + p4.Nombre = "Aplique clavos fractura multiple"; + p4.Categoria = c2; + + ObjectContainer db; + db = Db4o.openFile("os.yap"); + db.set (p1); + db.set (p2); + db.set (p3); + db.set (p4); + db.close (); } public void OnSalirActivate (object o, EventArgs args) @@ -86,13 +121,52 @@ 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 OnMantenerPrestaciones (object o, EventArgs args) + { + VMantenerPrestaciones v = new VMantenerPrestaciones (); + v.Run (); + } + + public void OnMantenerPrestadores (object o, EventArgs args) + { + VMantenerPrestadores v = new VMantenerPrestadores (); + v.Run (); + } + public void OnRegistrarVisitas (object o, EventArgs args) { - /*ABMGenerico g = new ABMGenerico (typeof(Plan)); - g.Run (); - return;*/ VRegistrarVisitas v = new VRegistrarVisitas (); v.Run (); } + + public void OnPedidoAutorizacionManual (object o, EventArgs args) + { + VPedidoAutorizacionManual v = new VPedidoAutorizacionManual (); + v.Run (); + } + + public void OnActualizarAutorizaciones (object o, EventArgs args) + { + VRevisarAutorizacionManual v = new VRevisarAutorizacionManual (); + v.Run (); + } + + public void OnConsultarAfiliado (object o, EventArgs args) + { + VConsultarAfiliado v = new VConsultarAfiliado (); + v.Run (); + } }