Exemplo n.º 1
0
 public static Patient CreatePatient(string firstName, string lastName, IUser user)
 {
     var creator = user.Editor<CreatePatientEditor>();
     creator.FirstName = firstName;
     creator.LastName = lastName;
     return creator.Create();
 }