public Account(string name, DOB dob, string nominee, double balance) { this.name = name; this.dob = dob; this.nominee = nominee; this.balance = balance; }
public Debit(string name, DOB DOB, string nominee, double balance) : base(name, DOB, nominee, balance) { }