public By(AccountIdentifier identifier) { this.identifier = identifier; }
public static AccountAuthorityIdentifier of(AccountIdentifier accountId, FunctionIdentifier functionId) { return(new AccountAuthorityIdentifier(accountId, functionId)); }
public Account(AccountIdentifier identifier) : this() { Id = identifier; }
public AccountAuthorityIdentifier(AccountIdentifier accountId, FunctionIdentifier functionId) : this() { AccountId = accountId; FunctionId = functionId; }