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