#region Tests
- /// <summary>\r
- /// Decide si se corre la demo ó los tests automatizados\r
- /// </summary>
- private static bool testing = false;
-
private static void EjecutarTests()
{
Tests.TestsAutorizacion.Instancia.EjecutarTodos();
{
if ( args.Length > 0) {
if (args[0].Equals ("--test")) {
- testing = true;
EjecutarTests();
return;
}
v.Run ();
}
+ public void OnMantenerPlanes (object o, EventArgs args)
+ {
+ VMantenerPlanes v = new VMantenerPlanes ();
+ v.Run ();
+ }
+
public void OnRegistrarVisitas (object o, EventArgs args)
{
- /*ABMGenerico g = new ABMGenerico (typeof(Plan));
+ ABMGenerico g = new ABMGenerico (typeof(Plan));
g.Run ();
- return;*/
- VRegistrarVisitas v = new VRegistrarVisitas ();
- v.Run ();
+ return;
+ /*VRegistrarVisitas v = new VRegistrarVisitas ();
+ v.Run ();*/
}
}