private async Task <bool> ExisteAluno(Guid idAluno)
 {
     if (await _alunoRepositorio.GetByIdAsync(idAluno) is null)
     {
         Injector.Notificador.Add("Aluno solicitado não existe.");
         return(false);
     }
     return(true);
 }