Ejemplo n.º 1
0
 public SettingsController(ISettingService settingService, IScheduleTaskService scheduleTaskService,
                           ILocalizationService localizationService, ScheduledXmlEporterSettings settings)
 {
     this._settingService      = settingService;
     this._scheduleTaskService = scheduleTaskService;
     this._localizationService = localizationService;
     this._settings            = settings;
 }
Ejemplo n.º 2
0
 public ScheduledXmlEporterConsumingService(IProductService productService, IWorkContext workContext,
                                            ICategoryService categoryService, IExportManager exportManager, ScheduledXmlEporterSettings scheduledXmlEporterSettings, ISettingService settingService)
 {
     _productService              = productService;
     _workContext                 = workContext;
     _categoryService             = categoryService;
     _exportManager               = exportManager;
     _scheduledXmlEporterSettings = scheduledXmlEporterSettings;
     _settingService              = settingService;
 }