public bool IsSameAgeAs(Person otherPerson)
 {
     return(GetAgeSpan() == otherPerson.GetAgeSpan());
 }
 public bool IsOlderThan(Person otherPerson)
 {
     return(GetAgeSpan() > otherPerson.GetAgeSpan());
 }