Пример #1
0
 public MallSettingUseCaseService(IMallSettingRepository repository, IEventBus eventBus, IStateManager stateManager, IUnitofWork unitofWork)
 {
     this.repository   = repository;
     this.unitofWork   = unitofWork;
     this.eventBus     = eventBus;
     this.stateManager = stateManager;
 }
Пример #2
0
 public EventHandler(IEventBus eventBus, IStateManager stateManager, IUnitofWork unitofWork, ILogger <EventHandler> logger, IEventHandleErrorInfoRepository infoRepository, IMallSettingRepository mallsettingRepository)
 {
     this.logger                = logger;
     this.unitofWork            = unitofWork;
     this.eventBus              = eventBus;
     this.stateManager          = stateManager;
     this.infoRepository        = infoRepository;
     this.mallsettingRepository = mallsettingRepository;
 }