using System;\r
+using System.Collections;\r
\r
namespace Reportes\r
{\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
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