Exemplo n.º 1
0
        public async Task <IEnumerable <AgendamentoDto> > Consultar(string cpf)
        {
            var agendamentos = await _agendamentoService.ConsultarPorCpf(cpf);

            return(_mapper.Map <IEnumerable <Agendamento>, IEnumerable <AgendamentoDto> >(agendamentos));
        }