コード例 #1
0
 public AccountAggregate(Guid id)
 {
     _id = id;
     _state = new AccountEntity(id);
     _stateHandler = new AccountStateHandler(() => _state);
 }
コード例 #2
0
 public AccountAggregate(Guid id)
 {
     _id           = id;
     _state        = new AccountEntity(id);
     _stateHandler = new AccountStateHandler(() => _state);
 }