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