public List <GetAntecedentesInfraestructuraDto> ObtenerAntecedentesInfraestructura(int?CodFicha)
        {
            var result = _getAntecedentesInfraestructuraDao.ObtenerAntecedentesInfraestructura(CodFicha);

            return(GetAntecedentesInfraestructuraMapper.ToDto(result));
        }
        /// <summary>
        /// Método que devuelve lista de objeto GetParValoresDto
        /// Spring 3 - 20191113 - gcastro
        /// </summary>
        /// <returns>Lista</returns>
        public List <GetParValoresDto> ObtenerParValores()
        {
            var result = _getParValoresDao.ObtenerParValores();

            return(GetAntecedentesInfraestructuraMapper.ToDtoParValores(result));
        }
        public List <GetParInfraestructuraDto> ObtenerParInfraestructura()
        {
            var result = _getParInfraestructura.ObtenerParInfraestructura();

            return(GetAntecedentesInfraestructuraMapper.ToDtoParInfraestructura(result));
        }