public MailChimpSynchronizationTask(IPluginFinder pluginFinder,
			IMailChimpApiService mailChimpApiService,
			IStoreContext storeContext,
			ISettingService settingService)
        {
            this._pluginFinder = pluginFinder;
            this._mailChimpApiService = mailChimpApiService;
			this._storeContext = storeContext;
			this._settingService = settingService;
        }
 public SettingsController(ISettingService settingService, IScheduleTaskService scheduleTaskService, 
     IMailChimpApiService mailChimpApiService, ISubscriptionEventQueueingService subscriptionEventQueueingService, 
     ILocalizationService localizationService, MailChimpSettings settings)
 {
     this._settingService = settingService;
     this._scheduleTaskService = scheduleTaskService;
     this._mailChimpApiService = mailChimpApiService;
     this._subscriptionEventQueueingService = subscriptionEventQueueingService;
     this._localizationService = localizationService;
     this._settings = settings;
 }
Example #3
0
 public SettingsController(ISettingService settingService, IScheduleTaskService scheduleTaskService,
                           IMailChimpApiService mailChimpApiService, ISubscriptionEventQueueingService subscriptionEventQueueingService,
                           ILocalizationService localizationService, MailChimpSettings settings)
 {
     this._settingService      = settingService;
     this._scheduleTaskService = scheduleTaskService;
     this._mailChimpApiService = mailChimpApiService;
     this._subscriptionEventQueueingService = subscriptionEventQueueingService;
     this._localizationService = localizationService;
     this._settings            = settings;
 }
 public MailChimpSynchronizationTask(IPluginFinder pluginFinder, IMailChimpApiService mailChimpApiService)
 {
     this._pluginFinder = pluginFinder;
     this._mailChimpApiService = mailChimpApiService;
 }
Example #5
0
 public MailChimpSynchronizationTask(IPluginFinder pluginFinder, IMailChimpApiService mailChimpApiService)
 {
     this._pluginFinder        = pluginFinder;
     this._mailChimpApiService = mailChimpApiService;
 }