public AddNewPropertyDomainCommandHandler(ILoggerFactory loggerFactory, IAggregateRootEventStorage rootEventStore, IDomainEventBus domainEventBus) : base(loggerFactory) { this.rootEventStore = rootEventStore; this.domainEventBus = domainEventBus; }
public EventStoreBasedDomainRepository(IAggregateRootEventStorage _rootEventStorage) { this._rootEventStorage = _rootEventStorage; }