コード例 #1
0
ファイル: Account.cs プロジェクト: peterkirilov/SoftUni-1
 protected Account(Customer customer, decimal balance, decimal interestRate, int duration)
 {
     this.Customer = customer;
     this.Balance = balance;
     this.InterestRate = interestRate;
     this.Duration = duration;
 }
コード例 #2
0
ファイル: Mortgage.cs プロジェクト: peterkirilov/SoftUni-1
 public Mortgage(Customer customer, decimal balance, decimal interestRate, int duration)
     : base(customer, balance, interestRate, duration)
 {
 }