Dialog wConsultarAfiliado;
ArrayList lst;
Glade.XML xmla;
+ [Widget] Image logo;
#region Tests
gxml.Autoconnect (this);
#warning Descomentar para inicializar la base de datos con algunos valores de prueba !
+ logo.FromFile = "logo.png";
/* InitDemo (); */
Application.Run();
}
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)
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 ();
+ }
}