public OrderCommandHandler(
     IAggregationRepository repository,
     IReadStorageSyncEventBus readStorageSyncEventBus)
 {
     this.repository = repository;
     this.readStorageSyncEventBus = readStorageSyncEventBus;
 }
Example #2
0
 public ReplicationManager(
     IAggregationRepository aggregationRepository,
     IAggregationReplicaRepository aggregationReplicaRepository,
     IReadStorageSyncEventBus readStorageSyncEventBus,
     ILogger logger)
 {
     this.aggregationRepository        = aggregationRepository;
     this.aggregationReplicaRepository = aggregationReplicaRepository;
     this.readStorageSyncEventBus      = readStorageSyncEventBus;
     this.logger = logger;
 }
Example #3
0
 public DatabaseInitializer(IAggregationRepository repository, IReadStorageSyncEventBus readStorageSyncEventBus)
 {
     this.repository = repository;
     this.readStorageSyncEventBus = readStorageSyncEventBus;
 }