Example #1
0
 public CatalogController(CatalogContext catalogContext, IEventBus eventBus,
                          ICatalogIntegrationEventService catalogIntegrationEventService,
                          IIntegrationEventLogService integrationEventLogService,
                          ISearchRepository <CatalogItem> searchRepository)
 {
     this._catalogContext            = catalogContext;
     this._eventBus                  = eventBus;
     _catalogIntegrationEventService = catalogIntegrationEventService;
     _integrationEventLogService     = integrationEventLogService;
     this.searchRepository           = searchRepository;;
 }
Example #2
0
 public OrderStatusChangedToAwaitingValidationIntegrationEventHandler(CatalogContext catalogContext, IEventBus eventBus)
 {
     _catalogContext = catalogContext;
     _eventBus       = eventBus;
 }