public async Task <ActionResult> AdicionarAluno(AlunoDto alunoDto) { try { if (ModelState.IsValid) { var retorno = await _alunoService.AddAluno(alunoDto); return(Ok(retorno)); } else { return(BadRequest(ModelState)); } } catch (Exception ex) { return(BadRequest(ex.Message)); } }