]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Controlador/RecibirPrestacionesController.cs
- Actualizacion solucion VS con archivos de Rick
[z.facultad/75.10/miklolife.git] / demo / src / Controlador / RecibirPrestacionesController.cs
index 838c82ed15bb895aef2a3a4297a6320b86c0b0a5..6fa8d3bdb6a22ad572f862b5fd762d5af4fbbba9 100644 (file)
@@ -5,6 +5,8 @@ using System.Collections;
 \r
 using Dominio;\r
 using Dominio.Autorizaciones;\r
+using Dominio.Afiliados;\r
+using Dominio.Planes;\r
 using Reportes;\r
 \r
 using com.db4o;\r
@@ -62,6 +64,9 @@ namespace Controlador
                        os = this.Db.get( a );\r
                        if ( (os == null) || (os.size() == 0) )\r
                        {\r
+                               Solicitante sol = new Solicitante( ETipoDocumento.DNI, 28123456, "Jorge", "Drexler" );\r
+                               Plan plan = new Plan( 10F ); plan.Codigo = 3; \r
+                               Afiliado afil = new Afiliado( sol, plan, new DateTime(2004, 4, 30 ) );\r
                                a.Afiliado = new Dominio.Afiliados.Afiliado( 987 );\r
                                a.Prestacion = new Prestacion( "B01AC06" );\r
                                a.Prestador = pre;\r
@@ -72,6 +77,13 @@ namespace Controlador
                                a.PorcentajeCobertura = 12.5F;\r
                                this.Db.set( a );\r
                        }\r
+                       else\r
+                       {\r
+                               Autorizacion aut = (ObjectSetToArrayList( os )[0] as Autorizacion );\r
+                               aut.FechaRealizacion = DateTime.MinValue;\r
+                               this.Db.set( aut );\r
+                       }\r
+                       \r
                }\r
 \r
                #endregion Creacion de Datos en la BD\r
@@ -160,7 +172,7 @@ namespace Controlador
                                        a.FechaRealizacion = linea.FechaRealizacion;\r
                                        this.Db.set( a );\r
                                        \r
-                                       //agego info al reporte de consumo\r
+                                       //agrego info al reporte de consumo\r
                                        this._reporteConsumo.AgregarInfo( p, linea );\r
                                }\r
                        }\r