Exemple #1
0
 public Person Create(Guid id, string firstName, string middleName, string lastName, DateTime birthday, Sex sex)
 {
     return new Person { Id = id, FirstName = firstName, MiddleName = middleName, LastName = lastName, Birthday = birthday, Sex = sex.GetStringValue() };
 }