public Person()
 {
     Education = new Education();
     Contact = new Contact();
 }
 protected bool Equals(Contact other)
 {
     return string.Equals(Address, other.Address) && string.Equals(Phone, other.Phone) && string.Equals(Email, other.Email);
 }