public async Task <ActionResult <Aluno> > GetAluno(int id)
        {
            try
            {
                var result = await _repo.GetAluno(id);

                if (result == null)
                {
                    return(NotFound($"O aluno com id = {id} não foi encontrado!"));
                }

                return(result);
            }
            catch (System.Exception)
            {
                return(StatusCode(
                           StatusCodes.Status500InternalServerError,
                           "Erro no retorno da lista de alunos."
                           ));
            }
        }