X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/aeb71279fa96dfc8e3832d04ae25d68c6853d39f..a993f69309df5936fa235b3cf7f52cd9858112d7:/demo/src/Reportes/InfoPrestacionesReport.cs diff --git a/demo/src/Reportes/InfoPrestacionesReport.cs b/demo/src/Reportes/InfoPrestacionesReport.cs index fd33f82..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 { @@ -15,5 +16,55 @@ namespace Reportes } #endregion Constructores + + #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 + + public bool ValidarFormato() + { + + return true; + } + + public void ValidarLineas() + { + foreach ( LineaInfoPrestacionesReport linea in this._lineas ) + { + linea.Validar(); + } + } + + #endregion Métodos públicos } }