public GoogleMerchantCenterFeedPlugin(
			IGoogleFeedService googleFeedService,
			ICommonServices services)
        {
            _googleFeedService = googleFeedService;
            _services = services;
        }
        public FroogleFeedPlugin(
			IGoogleFeedService googleService,
			ICommonServices services)
        {
            _googleService = googleService;
            _services = services;
        }
 public GoogleMerchantCenterFeedPlugin(
     IGoogleFeedService googleFeedService,
     ICommonServices services)
 {
     _googleFeedService = googleFeedService;
     _services          = services;
 }
 public FeedGoogleMerchantCenterController(
     IGoogleFeedService googleFeedService,
     Lazy <AdminAreaSettings> adminAreaSettings,
     Lazy <IExportProfileService> exportService)
 {
     _googleFeedService = googleFeedService;
     _adminAreaSettings = adminAreaSettings;
     _exportService     = exportService;
 }
        public FroogleFeedPlugin(
			IGoogleFeedService googleService,
            ISettingService settingService,
			ILocalizationService localizationService)
        {
            _googleService = googleService;
            _settingService = settingService;
			_localizationService = localizationService;
        }
Beispiel #6
0
 public GoogleMerchantCenterFeedPlugin(
     IGoogleFeedService googleFeedService,
     ICommonServices services,
     IExportProfileService exportProfileService)
 {
     _googleFeedService    = googleFeedService;
     _services             = services;
     _exportProfileService = exportProfileService;
 }
 public FroogleFeedPlugin(
     IGoogleFeedService googleService,
     ISettingService settingService,
     ILocalizationService localizationService)
 {
     _googleService       = googleService;
     _settingService      = settingService;
     _localizationService = localizationService;
 }
Beispiel #8
0
        public GmcXmlExportProvider(
            IGoogleFeedService googleFeedService,
            IMeasureService measureService,
            MeasureSettings measureSettings)
        {
            _googleFeedService = googleFeedService;
            _measureService    = measureService;
            _measureSettings   = measureSettings;

            T = NullLocalizer.Instance;
        }
        public FeedFroogleController(
			FroogleSettings settings,
			IGoogleFeedService googleService,
			ISettingService settingService,
			IPermissionService permissionService)
        {
            _settings = settings;
            _googleService = googleService;
            _settingService = settingService;
            _permissionService = permissionService;
        }
        public GmcXmlExportProvider(
			IGoogleFeedService googleFeedService,
			IMeasureService measureService,
			MeasureSettings measureSettings)
        {
            _googleFeedService = googleFeedService;
            _measureService = measureService;
            _measureSettings = measureSettings;

            T = NullLocalizer.Instance;
        }
Beispiel #11
0
        public FeedFroogleController(
            FroogleSettings settings,
            IGoogleFeedService googleService,
            ISettingService settingService,
            IPermissionService permissionService)
        {
            _settings          = settings;
            _googleService     = googleService;
            _settingService    = settingService;
            _permissionService = permissionService;

            T = NullLocalizer.Instance;
        }
        public GmcXmlExportProvider(
            IGoogleFeedService googleFeedService,
            IMeasureService measureService,
            ICommonServices services,
            IProductAttributeService productAttributeService,
            MeasureSettings measureSettings)
        {
            _googleFeedService       = googleFeedService;
            _measureService          = measureService;
            _services                = services;
            _productAttributeService = productAttributeService;
            _measureSettings         = measureSettings;

            T = NullLocalizer.Instance;
        }
Beispiel #13
0
 public Events(IGoogleFeedService googleService)
 {
     this._googleService = googleService;
 }
 public StaticFileGenerationTask(IGoogleFeedService feedService)
 {
     this._feedService = feedService;
 }