- 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);
- }
+ 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 OnConsultarAfiliado (object o, EventArgs args)
+ {
+ VConsultarAfiliado v = new VConsultarAfiliado ();
+ v.Run ();