예제 #1
0
 public DepositAccount(Customer customer, decimal balance, decimal monthlyInterestRate)
     : base(customer, balance, monthlyInterestRate)
 {
 }
예제 #2
0
 public MortgageAccount(Customer customer, decimal balance, decimal monthlyInterestRate)
     : base(customer, balance, monthlyInterestRate)
 {
 }
예제 #3
0
파일: Account.cs 프로젝트: HouseBreaker/OOP
 protected Account(Customer customer, decimal balance, decimal monthlyInterestRate)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.MonthlyInterestRate = monthlyInterestRate;
 }