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