コード例 #1
0
 public LoanAccount(Client client, decimal interstRateMonthly, string iban)
     : base(client, interstRateMonthly, iban)
 {
 }
コード例 #2
0
ファイル: Account.cs プロジェクト: MarKamenov/TelerikAcademy
 protected Account(Client client, decimal interstRateMonthly, string iban)
 {
     this.Owner = client;
     this.InterstRateMonthlyPerc = interstRateMonthly;
     this.IBAN = iban;
 }