]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Reportes/InfoPrestacionesReport.cs
* Ya se peuden agregar Coberturas a un Plan (no persistente)
[z.facultad/75.10/miklolife.git] / demo / src / Reportes / InfoPrestacionesReport.cs
index fd33f82e6b7c5292eb34ea861d66a8cdb8a8d77f..622b94df501eae983f2917c2f14bef9523c8c8da 100644 (file)
@@ -1,4 +1,5 @@
 using System;\r
 using System;\r
+using System.Collections;\r
 \r
 namespace Reportes\r
 {\r
 \r
 namespace Reportes\r
 {\r
@@ -15,5 +16,55 @@ namespace Reportes
                }\r
 \r
                #endregion Constructores\r
                }\r
 \r
                #endregion Constructores\r
+\r
+               #region Campos Privados\r
+\r
+               private string _pathArchivo = string.Empty;\r
+\r
+               private string _cuit;\r
+\r
+               private ArrayList _lineas = null;\r
+\r
+               #endregion Campos Privados\r
+\r
+               #region Propiedades Públicas\r
+               \r
+               public string PathArchivo\r
+               {\r
+                       get { return this._pathArchivo; }\r
+                       set { this._pathArchivo = value; }\r
+               }\r
+\r
+               public string Cuit\r
+               {\r
+                       get { return this._cuit; }\r
+                       set { this._cuit = value; }\r
+               }\r
+\r
+               public ArrayList Lineas\r
+               {\r
+                       get { return this._lineas; }\r
+                       set { this._lineas = value; }\r
+               }\r
+\r
+               #endregion Propiedades Públicas\r
+\r
+               #region Métodos públicos\r
+\r
+               public bool ValidarFormato()\r
+               {\r
+\r
+                       return true;\r
+               }\r
+\r
+               public void ValidarLineas()\r
+               {\r
+                       foreach ( LineaInfoPrestacionesReport linea in this._lineas )\r
+                       {\r
+                               linea.Validar();\r
+                       }\r
+               }\r
+\r
+               #endregion Métodos públicos\r
        }\r
 }\r
        }\r
 }\r