Beispiel #1
0
 public Boolean registraConta(Conta c)
 {
     ContaDAO cDAO = new ContaDAO();
     return cDAO.registraConta(c);
 }
Beispiel #2
0
 public String consultaSaldo(string email)
 {
     ContaDAO cDAO = new ContaDAO();
     return cDAO.consultaSaldo(email);
 }