Beispiel #1
0
 public EntityList(IRegisterChildEntities aggregateRoot)
 {
     _aggregateRoot = aggregateRoot;
 }
Beispiel #2
0
 public EntityList(IRegisterChildEntities aggregateRoot, int capacity)
     : base(capacity)
 {
     _aggregateRoot = aggregateRoot;
 }
Beispiel #3
0
 public EntityList(IRegisterChildEntities aggregateRoot, IEnumerable <TEntity> collection)
     : base(collection)
 {
     _aggregateRoot = aggregateRoot;
 }
Beispiel #4
0
 public EntityList(IRegisterChildEntities <TDomainEvent> aggregateRoot)
 {
     _aggregateRoot = aggregateRoot;
 }