public async Task <JsonResult> ObterAgendamento(Guid id)
        {
            var agendamento = await _agendamentoService.ObterAsync(id);

            return(Json(new AgendamentoItemListaDto(agendamento)));
        }