public async Task <ActionResult> ReabrirTurno(Guid turnoId)
        {
            TurnoResultDto turnoResultDto = await _turnoService.PesquisarTurnoPorId(turnoId);

            if (turnoResultDto == null)
            {
                return(NotFound(new
                {
                    success = true,
                    status = 404,
                    mensagem = "O turno informado não foi encontrado!",
                }));
            }

            await _turnoService.ReabrirTurno(turnoId);

            return(CustomResponse(new
            {
                mensagem = "O turno foi reaberto com sucesso!",
            }));
        }