Ejemplo n.º 1
0
 public AccountAggregate(Guid id)
 {
     _id = id;
     _state = new AccountEntity(id);
     _stateHandler = new AccountStateHandler(() => _state);
 }
Ejemplo n.º 2
0
 public AccountAggregate(Guid id)
 {
     _id           = id;
     _state        = new AccountEntity(id);
     _stateHandler = new AccountStateHandler(() => _state);
 }