public FeedGoogleShoppingController(IGoogleService googleService,
                                     IProductService productService,
                                     ICurrencyService currencyService,
                                     ILocalizationService localizationService,
                                     IPluginFinder pluginFinder,
                                     ILogger logger,
                                     IWebHelper webHelper,
                                     IStoreService storeService,
                                     ISettingService settingService,
                                     IPermissionService permissionService,
                                     IHostingEnvironment hostingEnvironment,
                                     IStoreContext storeContext, GoogleShoppingSettings googleShoppingSettings, IVendorService vendorService, IStaticCacheManager cacheManager, IWorkContext workContext)
 {
     this._googleService       = googleService;
     this._productService      = productService;
     this._currencyService     = currencyService;
     this._localizationService = localizationService;
     this._pluginFinder        = pluginFinder;
     this._logger                 = logger;
     this._webHelper              = webHelper;
     this._storeService           = storeService;
     this._settingService         = settingService;
     this._permissionService      = permissionService;
     this._hostingEnvironment     = hostingEnvironment;
     this._googleShoppingSettings = googleShoppingSettings;
     this._vendorService          = vendorService;
     this._cacheManager           = cacheManager;
     this._workContext            = workContext;
     this._storeContext           = storeContext;
 }
 public FeedGoogleShoppingController(IGoogleService googleService,
                                     IProductService productService,
                                     ICurrencyService currencyService,
                                     ILocalizationService localizationService,
                                     IPluginFinder pluginFinder,
                                     ILogger logger,
                                     IWebHelper webHelper,
                                     IStoreService storeService,
                                     GoogleShoppingSettings GoogleShoppingSettings,
                                     ISettingService settingService,
                                     IPermissionService permissionService,
                                     IServiceProvider serviceProvider)
 {
     _googleService       = googleService;
     _productService      = productService;
     _currencyService     = currencyService;
     _localizationService = localizationService;
     _pluginFinder        = pluginFinder;
     _logger                 = logger;
     _webHelper              = webHelper;
     _storeService           = storeService;
     _GoogleShoppingSettings = GoogleShoppingSettings;
     _settingService         = settingService;
     _permissionService      = permissionService;
     _serviceProvider        = serviceProvider;
 }
 public FeedGoogleShoppingController(IGoogleService googleService,
                                     IProductService productService,
                                     ICurrencyService currencyService,
                                     ILocalizationService localizationService,
                                     IPluginFinder pluginFinder,
                                     ILogger logger,
                                     IWebHelper webHelper,
                                     IStoreService storeService,
                                     GoogleShoppingSettings googleShoppingSettings,
                                     ISettingService settingService,
                                     IPermissionService permissionService,
                                     IHostingEnvironment hostingEnvironment)
 {
     this._googleService       = googleService;
     this._productService      = productService;
     this._currencyService     = currencyService;
     this._localizationService = localizationService;
     this._pluginFinder        = pluginFinder;
     this._logger                 = logger;
     this._webHelper              = webHelper;
     this._storeService           = storeService;
     this._googleShoppingSettings = googleShoppingSettings;
     this._settingService         = settingService;
     this._permissionService      = permissionService;
     this._hostingEnvironment     = hostingEnvironment;
 }