public EntityList(IRegisterChildEntities aggregateRoot) { _aggregateRoot = aggregateRoot; }
public EntityList(IRegisterChildEntities aggregateRoot, int capacity) : base(capacity) { _aggregateRoot = aggregateRoot; }
public EntityList(IRegisterChildEntities aggregateRoot, IEnumerable <TEntity> collection) : base(collection) { _aggregateRoot = aggregateRoot; }
public EntityList(IRegisterChildEntities <TDomainEvent> aggregateRoot) { _aggregateRoot = aggregateRoot; }