public HeightObserver(IPersonRegister p) { height = 0; this.p = p; p.Attach(this); }
public MonthObserver(IPersonRegister p) { this.p = p; p.Attach(this); }
public YearObserver(IPersonRegister p) { ageInYears = 0; this.p = p; p.Attach(this); }
public DayObserver(IPersonRegister p) { ageInDays = 0; this.p = p; p.Attach(this); }