public void AddSpouse(Man groom) { Console.WriteLine(Name + " вышла замуж за " + groom.Name + " =)"); AddSpouse(groom); }
public Woman(Man father, Woman mother) { Born(father, mother); Console.WriteLine(Name + " родилась! =)"); }
public void AddChild(Man father) { AddChild(father, this); }