using Glade;
using Dominio.Afiliados;
using Dominio.Planes;
+using Dominio.Autorizaciones;
+using com.db4o;
+using com.db4o.query;
public class App
{
ArrayList lst;
Glade.XML xmla;
+ #region Tests
+
+ private static void EjecutarTests()
+ {
+ Tests.TestsAutorizacion.Instancia.EjecutarTodos();
+
+ Console.Read();
+
+ //Acá pueden agregar más, si quieren
+ }
+
+ #endregion Tests
+
+ #region Entry Point
+
static public void Main (string[] args)
{
+ if ( args.Length > 0) {
+ if (args[0].Equals ("--test")) {
+ EjecutarTests();
+ return;
+ }
+ Console.WriteLine ("Parametro no válido");
+ return;
+ }
new App ();
}
+ #endregion Entry Point
+
public App ()
{
Application.Init();
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;
+ c1.Nombre = "Odontologia";
+
+ Categoria c2 = new Categoria ();
+ c2.Codigo = 2;
+ c2.Nombre = "Traumatologia";
+
+ Prestacion p1 = new Prestacion ();
+ p1.Codigo = "101010";
+ p1.Nombre = "Extracion Muelas de Juicio";
+ p1.Categoria = c1;
+
+ Prestacion p2 = new Prestacion ();
+ p2.Codigo = "101011";
+ p2.Nombre = "Aplique de Fluor";
+ p2.Categoria = c1;
+ Prestacion p3 = new Prestacion ();
+ p3.Codigo = "201010";
+ p3.Nombre = "Yeso parcial";
+ p3.Categoria = c2;
+
+ Prestacion p4 = new Prestacion ();
+ p4.Codigo = "201011";
+ p4.Nombre = "Aplique clavos fractura multiple";
+ p4.Categoria = c2;
+
+ ObjectContainer db;
+ db = Db4o.openFile("os.yap");
+ db.set (p1);
+ db.set (p2);
+ db.set (p3);
+ db.set (p4);
+ db.close ();
}
public void OnSalirActivate (object o, EventArgs args)
Application.Quit ();
}
- public void OnConsultarAfiliado (object o, EventArgs args)
+ public void OnIngresarSolicitud(object o, EventArgs args)
{
VIngresarSolicitud v = new VIngresarSolicitud ();
v.Run ();
v.Run ();
}
- public void OnRegistrarVisitas (object o, EventArgs args)
+ public void OnAgregarAfiliado (object o, EventArgs args)
{
- /*ABMGenerico g = new ABMGenerico (typeof(Plan));
- g.Run ();
- return;*/
- VRegistrarVisitas v = new VRegistrarVisitas ();
+ VAgregarAfiliado v = new VAgregarAfiliado ();
v.Run ();
}
- public void OnConsultarAfiliadoClose (object o, EventArgs args)
+
+ public void OnMantenerPlanes (object o, EventArgs args)
{
- wConsultarAfiliado.Destroy ();
+ VMantenerPlanes v = new VMantenerPlanes ();
+ v.Run ();
}
- public void OnVerAfiliado (object o, EventArgs args)
+ public void OnMantenerPrestadores (object o, EventArgs args)
{
}
-
- public void OnBuscarAfiliado (object o, EventArgs args)
+
+ public void OnRegistrarVisitas (object o, EventArgs args)
{
- 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);
- }
+ VRegistrarVisitas v = new VRegistrarVisitas ();
+ v.Run ();
}
}