Exemplo n.º 1
0
 public async Task <ActionResult <Aluno> > GetAluno(int idAluno)
 {
     return(Ok(_alunoViewModel
               .ConverterModelParaViewModel(await _alunoRepository.GetAsync(idAluno))));
 }