/// <summary>
        /// Método que lista ParRangoEtareo por su ID
        /// Spring N° 3 - 20191112 - gcastro
        /// </summary>
        /// <param name="idRangoEtareo"></param>
        /// <returns>Lista</returns>
        public List <GetParRangoEtareoDto> ObtenerRangoEtareoAtencionPorID(int idRangoEtareo)
        {
            var result = _getParRangoAtereoDao.ObtenerRangoEtareoAtencionPorID(idRangoEtareo);

            return(GetAntecedentesPoblacionMapper.ToDtoParRangoEtareo(result));
        }
        public List <GetAntecedentesPoblacionDto> ObtenerAntecedentesPoblacion(int?CodFicha)
        {
            var result = _getAntecedentesPoblacionDao.ObtenerAntecedentesPoblacion(CodFicha);

            return(GetAntecedentesPoblacionMapper.ToDto(result));
        }