protected bool Equals(Education other)
 {
     return string.Equals(Organization, other.Organization) && 
            string.Equals(Department, other.Department) && 
            string.Equals(Speciality, other.Speciality) && 
            Course == other.Course;
 }
 public Person()
 {
     Education = new Education();
     Contact = new Contact();
 }