コード例 #1
0
 public MiscXmlUpdateFromRotapController(ISettingService settingService, IScheduleTaskService scheduleTaskService,
                                         ILocalizationService localizationService, XmlUpdateFromRotapSettings settings
                                         , IXmlUpdateFromRotapConsumingService scheduledConsumingService)
 {
     this._settingService            = settingService;
     this._scheduleTaskService       = scheduleTaskService;
     this._localizationService       = localizationService;
     this._settings                  = settings;
     this._scheduledConsumingService = scheduledConsumingService;
 }
コード例 #2
0
 public XmlUpdateFromRotapConsumingService(IProductService productService
                                           , IWorkContext workContext
                                           , ICategoryService categoryService
                                           , IExportManager exportManager
                                           , XmlUpdateFromRotapSettings xmlUpdateFromRotapSettings
                                           , ISettingService settingService
                                           , IWebHelper webHelper
                                           , IExcelService excelService
                                           , IQueuedEmailService queuedEmailService
                                           , IEmailAccountService emailAccountService
                                           , EmailAccountSettings emailAccountSettings)
 {
     _productService             = productService;
     _workContext                = workContext;
     _categoryService            = categoryService;
     _exportManager              = exportManager;
     _xmlUpdateFromRotapSettings = xmlUpdateFromRotapSettings;
     _settingService             = settingService;
     _webHelper            = webHelper;
     _excelService         = excelService;
     _queuedEmailService   = queuedEmailService;
     _emailAccountService  = emailAccountService;
     _emailAccountSettings = emailAccountSettings;
 }