Пример #1
0
 public Account(string name, DOB dob, string nominee, double balance)
 {
     this.name    = name;
     this.dob     = dob;
     this.nominee = nominee;
     this.balance = balance;
 }
Пример #2
0
 public Debit(string name, DOB DOB, string nominee, double balance) : base(name, DOB, nominee, balance)
 {
 }