示例#1
0
 public LoanAccount(Client client, decimal interstRateMonthly, string iban)
     : base(client, interstRateMonthly, iban)
 {
 }
示例#2
0
 protected Account(Client client, decimal interstRateMonthly, string iban)
 {
     this.Owner = client;
     this.InterstRateMonthlyPerc = interstRateMonthly;
     this.IBAN = iban;
 }