Пример #1
0
 public Human(HumanId humanId, FullName fullName, Sex sex, Birthday birthday, Relationship relationship)
 {
     HumanId      = humanId;
     FullName     = fullName;
     Sex          = sex;
     Birthday     = birthday;
     Relationship = relationship;
 }
Пример #2
0
 public Human GetById(HumanId id) => this.Family.GetById(id);
Пример #3
0
 public override string ToString()
 {
     return(HumanId.ToString());
 }