public By(AccountIdentifier identifier)
 {
     this.identifier = identifier;
 }
예제 #2
0
 public static AccountAuthorityIdentifier of(AccountIdentifier accountId, FunctionIdentifier functionId)
 {
     return(new AccountAuthorityIdentifier(accountId, functionId));
 }
예제 #3
0
 public Account(AccountIdentifier identifier) : this()
 {
     Id = identifier;
 }
예제 #4
0
 public AccountAuthorityIdentifier(AccountIdentifier accountId, FunctionIdentifier functionId)
     : this()
 {
     AccountId  = accountId;
     FunctionId = functionId;
 }