public async Task <ActionResult> ExcluirTurno(Guid turnoId)
        {
            if (!ModelState.IsValid)
            {
                return(CustomResponse(ModelState));
            }

            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.ExcluirTurno(turnoId);

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