Example #1
0
 public static AccountOwner CreateFrom(AccountOwnerSnapshot snapshot) => new AccountOwner(snapshot);
Example #2
0
 private AccountOwner(AccountOwnerSnapshot snapshot)
 {
     _id   = snapshot.Id;
     _name = snapshot.Name;
 }