public function addChildToParents(Person $father, Person $mother, Person $child)
 {
     $child->makeChild($father->id, $mother->id);
 }