X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/ad14ee69cc0a9253f352b642dfd714edee438d9a..889da6ee2b0237902b33b5d719a8d2fa55a1a8c2:/demo/src/Reportes/InfoPrestacionesReport.cs diff --git a/demo/src/Reportes/InfoPrestacionesReport.cs b/demo/src/Reportes/InfoPrestacionesReport.cs index 280249c..622b94d 100644 --- a/demo/src/Reportes/InfoPrestacionesReport.cs +++ b/demo/src/Reportes/InfoPrestacionesReport.cs @@ -1,4 +1,5 @@ using System; +using System.Collections; namespace Reportes { @@ -18,18 +19,34 @@ namespace Reportes #region Campos Privados + private string _pathArchivo = string.Empty; + private string _cuit; + private ArrayList _lineas = null; + #endregion Campos Privados #region Propiedades Públicas + public string PathArchivo + { + get { return this._pathArchivo; } + set { this._pathArchivo = value; } + } + public string Cuit { get { return this._cuit; } set { this._cuit = value; } } + public ArrayList Lineas + { + get { return this._lineas; } + set { this._lineas = value; } + } + #endregion Propiedades Públicas #region Métodos públicos @@ -40,6 +57,14 @@ namespace Reportes return true; } + public void ValidarLineas() + { + foreach ( LineaInfoPrestacionesReport linea in this._lineas ) + { + linea.Validar(); + } + } + #endregion Métodos públicos } }