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