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 !
- /* InitDemo (); */
+ logo.FromFile = "logo.png";
+ /*InitDemo ();*/
Application.Run();
}
p4.Nombre = "Aplique clavos fractura multiple";
p4.Categoria = c2;
+ Prestador prestador = new Prestador ("30-11223366-0");
+ prestador.Nombre = "DePrueba";
+ prestador.Email = "DePrueba";
+
+ p1.AgregarPrestador (prestador);
+ p2.AgregarPrestador (prestador);
+ p3.AgregarPrestador (prestador);
+ p4.AgregarPrestador (prestador);
+
ObjectContainer db;
db = Db4o.openFile("os.yap");
db.set (p1);
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 ();
}
+
+ public void OnConsultarAutorizaciones (object o, EventArgs args)
+ {
+ VConsultarAutorizaciones v = new VConsultarAutorizaciones ();
+ v.Run ();
+ }
+
+ public void OnPedidoAutorizacionAutomatica (object o, EventArgs args)
+ {
+ }
+
+ public void OnProcesarInformes (object o, EventArgs args)
+ {
+ /* PARA VOS GUILLE !!! */
+ }
+
}