public void setDateOfBirth(OurDate dob) { this.dob = dob; }
public Employee(string n, double sal, OurDate dob) //parameterized Constructor { this.name = n; this.salary = sal; this.dob = dob; }