public ZboziShoppingService(IZboziService zboziService,
                             IPriceCalculationService priceCalculationService,
                             ITaxService taxService,
                             IProductService productService,
                             ICategoryService categoryService,
                             IManufacturerService manufacturerService,
                             IPictureService pictureService,
                             ICurrencyService currencyService,
                             ILanguageService languageService,
                             ISettingService settingService,
                             IWorkContext workContext,
                             IMeasureService measureService,
                             IDateRangeService dateRangeService,
                             Nop.Services.Shipping.IShippingService shippingService,
                             IShippingByWeightService shippingByWeightService,
                             MeasureSettings measureSettings,
                             ZboziShoppingSettings zbozihoppingSettings,
                             CurrencySettings currencySettings,
                             ZboziProductObjectContext objectContext)
 {
     this._shippingByWeightService = shippingByWeightService;
     this._shippingService         = shippingService;
     this._dateRangeService        = dateRangeService;
     this._zboziService            = zboziService;
     this._priceCalculationService = priceCalculationService;
     this._taxService            = taxService;
     this._productService        = productService;
     this._categoryService       = categoryService;
     this._manufacturerService   = manufacturerService;
     this._pictureService        = pictureService;
     this._currencyService       = currencyService;
     this._languageService       = languageService;
     this._settingService        = settingService;
     this._workContext           = workContext;
     this._measureService        = measureService;
     this._measureSettings       = measureSettings;
     this._zboziShoppingSettings = zbozihoppingSettings;
     this._currencySettings      = currencySettings;
     this._objectContext         = objectContext;
 }
 public FeedZboziController(IZboziService zboziService,
                            IProductService productService,
                            ICurrencyService currencyService,
                            ILocalizationService localizationService,
                            IPluginFinder pluginFinder,
                            ILogger logger,
                            IWebHelper webHelper,
                            IStoreService storeService,
                            ZboziShoppingSettings ZboziSettings,
                            ISettingService settingService,
                            IPermissionService permissionService)
 {
     this._zboziService        = zboziService;
     this._productService      = productService;
     this._currencyService     = currencyService;
     this._localizationService = localizationService;
     this._pluginFinder        = pluginFinder;
     this._logger            = logger;
     this._webHelper         = webHelper;
     this._storeService      = storeService;
     this._zboziSettings     = ZboziSettings;
     this._settingService    = settingService;
     this._permissionService = permissionService;
 }