]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Main.cs
- Recibir y Cotejar afilidito
[z.facultad/75.10/miklolife.git] / demo / src / Main.cs
index e3085afb52868f701b8f65b6472b2a6a008bb9ec..b8a13dff5bab03781c0724b3e9d00df42f8286ba 100644 (file)
@@ -23,7 +23,15 @@ public class App
                Tests.TestsAutorizacion.Instancia.EjecutarTodos();
                
                Console.Read();
+       /*      
+               Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
+               using ( rpc )
+               {
+                       rpc.InsertarDatosNecesarios(); 
 
+                       rpc.procesarInfoRecibida();
+               }
+*/
                //Acá pueden agregar más, si quieren
        }
 
@@ -177,5 +185,27 @@ public class App
                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)
+       {
+               /* Recibir y Cotejar */
+               Controlador.RecibirPrestacionesController rpc = new Controlador.RecibirPrestacionesController();
+               using ( rpc )
+               {
+                       //rpc.InsertarDatosNecesarios(); 
+                       rpc.procesarInfoRecibida();
+               }
+       }
+       
 }