public BankAccount(int accountAge, int creditScore,
     AccountInterest accountInterest)
 {
     AccountAge = accountAge;
     CreditScore = creditScore;
     AccountInterest = accountInterest;
 }
示例#2
0
 public BankAccount(int accountAge, int creditScore,
                    AccountInterest accountInterest)
 {
     AccountAge      = accountAge;
     CreditScore     = creditScore;
     AccountInterest = accountInterest;
 }