Example #1
0
 public Customer()
 {
     Checking = new Account();
     Savings = new Account();
 }
Example #2
0
 public static void Transfer(Account transFrom, Account transTo, decimal transAmount)
 {
     transFrom.Balance -= transAmount;
     transTo.Balance += transAmount;
 }
Example #3
0
 public Customer()
 {
     this.Checking = new Account();
     this.Savings = new Account();
 }