コード例 #1
0
 protected Account(Customer customer,
     decimal balance, decimal interestRatePerMonth)
 {
     Customer = customer;
     Balance = balance;
     InterestRatePerMonth = interestRatePerMonth;
 }
コード例 #2
0
 public DepositAccount(Customer customer,
     decimal balance, decimal interestRatePerMonth)
     : base(customer, balance, interestRatePerMonth)
 {
 }
コード例 #3
0
 public MortgageAccount(Customer customer,
     decimal balance, decimal interestRatePerMonth)
     : base(customer, balance, interestRatePerMonth)
 {
 }