X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/5bb1bb3c90e891755b8963804c9babe4b5f6b0d0..afbf89745cac12021bfe71bc6739dbd9459cacc0:/demo/src/Main.cs diff --git a/demo/src/Main.cs b/demo/src/Main.cs index 24a7a48..8b5f7e7 100644 --- a/demo/src/Main.cs +++ b/demo/src/Main.cs @@ -14,6 +14,7 @@ public class App Dialog wConsultarAfiliado; ArrayList lst; Glade.XML xmla; + [Widget] Image logo; #region Tests @@ -52,16 +53,14 @@ 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 () { - - #warning Descomentar para inicializar la base de datos con algunos valores de prueba ! - return; - /* Algunas categorias */ Categoria c1 = new Categoria (); c1.Codigo = 1; @@ -128,16 +127,21 @@ public class App 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) { - VBuscarPrestacion v = new VBuscarPrestacion (); + VMantenerPrestadores v = new VMantenerPrestadores (); v.Run (); } @@ -146,5 +150,23 @@ public class App 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 (); + } }