public async Task <FechamentoDto> ObterPorTipoCalendarioDreEUe(FiltroFechamentoDto fechamentoDto)
 {
     return(await servicoFechamento.ObterPorTipoCalendarioDreEUe(fechamentoDto.TipoCalendarioId, fechamentoDto.DreId, fechamentoDto.UeId));
 }
 public async Task <IActionResult> Get([FromQuery] FiltroFechamentoDto fechamentoDto, [FromServices] IConsultasPeriodoFechamento consultasFechamento)
 {
     return(Ok(await consultasFechamento.ObterPorTipoCalendarioDreEUe(fechamentoDto)));
 }