X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/ac4a956058b69d4a283635f45c09ab2741b9dffb..fc04c9fba5d70e3c4c35d2e8e505e7f2af29f9ca:/demo/src/Main.cs diff --git a/demo/src/Main.cs b/demo/src/Main.cs index 6374454..1b55c45 100644 --- a/demo/src/Main.cs +++ b/demo/src/Main.cs @@ -125,15 +125,22 @@ 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) { + VMantenerPrestadores v = new VMantenerPrestadores (); + v.Run (); } public void OnRegistrarVisitas (object o, EventArgs args) @@ -141,5 +148,17 @@ public class App VRegistrarVisitas v = new VRegistrarVisitas (); v.Run (); } + + public void OnPedidoAutorizacionManual (object o, EventArgs args) + { + VPedidoAutorizacionManual v = new VPedidoAutorizacionManual (); + v.Run (); + } + + public void OnConsultarAfiliado (object o, EventArgs args) + { + VConsultarAfiliado v = new VConsultarAfiliado (); + v.Run (); + } }