Beispiel #1
0
 public CartsSweeperQuartzSchedulerJob(
     ILogService logService,
     ISettingsService settingsService,
     IReadOnlyEntitiesRepository <Hook> hooReadOnlyEntitiesRepository,
     IFactory <IOperation <CartsSweeperRequest> > factory)
     : base(logService, settingsService)
 {
     _hooReadOnlyEntitiesRepository = hooReadOnlyEntitiesRepository;
     _factory = factory;
 }
 public ReportsController(ILogService logService, ISettingsService settingsService, IReadOnlyEntitiesRepository <PeriodCartReport> readOnlyEntitiesRepository) : base(logService, settingsService)
 {
     _readOnlyEntitiesRepository = readOnlyEntitiesRepository;
 }
 public HooksController(ILogService logService, ISettingsService settingsService, IReadOnlyEntitiesRepository <Hook> hookEntitiesRepository, IFactory <IOperation <AddHookRequest> > hookOperationFactory) : base(logService, settingsService)
 {
     _hookEntitiesRepository = hookEntitiesRepository;
     _hookOperationFactory   = hookOperationFactory;
 }