public ParentalRelationship(Family family, ParentalRelationshipType fatherRel, ParentalRelationshipType motherRel)
 {
     Family             = family;
     FatherRelationship = fatherRel;
     MotherRelationship = motherRel;
 }
 public ParentalRelationship(Family family, ParentalRelationshipType fatherRel, ParentalRelationshipType motherRel)
 {
     this.Family             = family;
     this.FatherRelationship = fatherRel;
     this.MotherRelationship = motherRel;
 }