Esempio n. 1
0
 public void Deletar(int id)
 {
     try
     {
         AlunoDAO alunoDAO = new AlunoDAO();
         alunoDAO.DeletarAluno(id);
     }
     catch (Exception ex)
     {
         throw new Exception($"Erro ao deletar Auno: Erro => {ex.Message}");
     }
 }