Exemplo n.º 1
0
 public User(CheckingAccount checkingAccount, SavingsAccount savingsAccount, CreditCard creditCard)
 {
     SavingsAccount  = savingsAccount;
     CheckingAccount = checkingAccount;
     CreditCard      = creditCard;
 }
Exemplo n.º 2
0
 public User(CheckingAccount checkingAccount, SavingsAccount savingsAccount)
 {
     SavingsAccount  = savingsAccount;
     CheckingAccount = checkingAccount;
 }