Ejemplo n.º 1
0
 public Savings2() // constructor to defin and instance // not needed if Line 9 is done
 {
     account = new account();
 }
Ejemplo n.º 2
0
 public bool Transfer(decimal amount, account toAccount)
 {
     return(account.Transfer(amount, toAccount));
 }