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