--- /dev/null
+#region Usings\r
+\r
+using System;\r
+using System.Collections;\r
+\r
+using Dominio;\r
+using Dominio.Autorizaciones;\r
+\r
+#endregion Usings\r
+\r
+namespace Controlador\r
+{\r
+ /// <summary>\r
+ /// Clase controlador que lleva a cabo el CU "Recibir y Cotejar Consumos y Prestaciones"\r
+ /// </summary>\r
+ public class RecibirPrestacionesController : Controller\r
+ {\r
+ #region Constructores\r
+ \r
+ public RecibirPrestacionesController()\r
+ : base()\r
+ {\r
+ }\r
+\r
+ #endregion Constructores\r
+\r
+ #region Métodos Públicos\r
+ \r
+ public void procesarInfoRecibida()\r
+ {\r
+ //1. Obtener todos los prestadores\r
+ ArrayList prestadores = this.ObjectSetToArrayList( this.Db.get(new Prestador()) );\r
+\r
+ //2. recorrer los prestadores\r
+ foreach ( Prestador p in prestadores )\r
+ {\r
+ //Obtener archivos enviados del prestador\r
+\r
+ }\r
+ \r
+\r
+ }\r
+\r
+ #endregion Métodos Públicos\r
+ }\r
+}\r
--- /dev/null
+using System;\r
+\r
+namespace Reportes\r
+{\r
+ /// <summary>\r
+ /// Clase que contiene la funcionalidad para levantar información recibida del Prestador, \r
+ /// y generar y enviar reportes.\r
+ /// </summary>\r
+ public class InfoPrestacionesAdmin\r
+ {\r
+ #region Constructores\r
+ \r
+ public InfoPrestacionesAdmin()\r
+ {\r
+ }\r
+\r
+ #endregion Constructores\r
+ }\r
+}\r
--- /dev/null
+using System;\r
+\r
+namespace Reportes\r
+{\r
+ /// <summary>\r
+ /// Clase que representa un archivo de Información de Prestaciones Realizadas enviado por el \r
+ /// Prestador.\r
+ /// </summary>\r
+ public class InfoPrestacionesReport\r
+ {\r
+ #region Constructores\r
+\r
+ public InfoPrestacionesReport()\r
+ {\r
+ }\r
+\r
+ #endregion Constructores\r
+ }\r
+}\r
--- /dev/null
+using System;\r
+\r
+namespace Reportes\r
+{\r
+ /// <summary>\r
+ /// Clase que representa una linea del Informe de Prestaciones Realizadas enviado por el \r
+ /// Prestador.\r
+ /// </summary>\r
+ public class LineaInfoPrestacionesReport\r
+ {\r
+ #region Constructores\r
+\r
+ public LineaInfoPrestacionesReport()\r
+ {\r
+ }\r
+\r
+ #endregion Constructores\r
+ }\r
+}\r
SubType = "Code"\r
BuildAction = "Compile"\r
/>\r
+ <File\r
+ RelPath = "Controlador\RecibirPrestacionesController.cs"\r
+ SubType = "Code"\r
+ BuildAction = "Compile"\r
+ />\r
<File\r
RelPath = "Controlador\RegistrarVisitasController.cs"\r
SubType = "Code"\r
SubType = "Code"\r
BuildAction = "Compile"\r
/>\r
+ <File\r
+ RelPath = "Reportes\InfoPrestacionesAdmin.cs"\r
+ SubType = "Code"\r
+ BuildAction = "Compile"\r
+ />\r
+ <File\r
+ RelPath = "Reportes\InfoPrestacionesReport.cs"\r
+ SubType = "Code"\r
+ BuildAction = "Compile"\r
+ />\r
+ <File\r
+ RelPath = "Reportes\LineaInfoPrestacionesReport.cs"\r
+ SubType = "Code"\r
+ BuildAction = "Compile"\r
+ />\r
<File\r
RelPath = "Tests\TestsAutorizacion.cs"\r
SubType = "Code"\r