public ProductImporter(
			IRepository<ProductPicture> productPictureRepository,
			IRepository<ProductManufacturer> productManufacturerRepository,
			IRepository<ProductCategory> productCategoryRepository,
			IRepository<Product> productRepository,
			ICommonServices services,
			ILocalizedEntityService localizedEntityService,
			IPictureService pictureService,
			IManufacturerService manufacturerService,
			ICategoryService categoryService,
			IProductService productService,
			IProductTemplateService productTemplateService,
			FileDownloadManager fileDownloadManager)
        {
            _productPictureRepository = productPictureRepository;
            _productManufacturerRepository = productManufacturerRepository;
            _productCategoryRepository = productCategoryRepository;
            _productRepository = productRepository;
            _services = services;
            _localizedEntityService = localizedEntityService;
            _pictureService = pictureService;
            _manufacturerService = manufacturerService;
            _categoryService = categoryService;
            _productService = productService;
            _productTemplateService = productTemplateService;
            _fileDownloadManager = fileDownloadManager;
        }
        public CustomerRoleController(ICustomerService customerService,
            ILocalizationService localizationService, 
            ICustomerActivityService customerActivityService,
            IPermissionService permissionService,
            IProductService productService,
            ICategoryService categoryService,
            IManufacturerService manufacturerService,
            IStoreService storeService,
            IVendorService vendorService,
            IWorkContext workContext,
            ILanguageService languageService,
            ILocalizedEntityService localizedEntityService,
            ICacheManager cacheManager)
		{
            this._customerService = customerService;
            this._localizationService = localizationService;
            this._customerActivityService = customerActivityService;
            this._permissionService = permissionService;
            this._productService = productService;
            this._categoryService = categoryService;
            this._manufacturerService = manufacturerService;
            this._storeService = storeService;
            this._vendorService = vendorService;
            this._workContext = workContext;
            this._languageService = languageService;
            this._localizedEntityService = localizedEntityService;
            this._cacheManager = cacheManager;
        }
 public CheckoutAttributeController(ICheckoutAttributeService checkoutAttributeService,
     ILanguageService languageService, 
     ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService,
     ITaxCategoryService taxCategoryService,
     IWorkContext workContext, 
     ICurrencyService currencyService, 
     ICustomerActivityService customerActivityService, 
     CurrencySettings currencySettings,
     IMeasureService measureService, 
     MeasureSettings measureSettings,
     IPermissionService permissionService,
     IStoreService storeService,
     IStoreMappingService storeMappingService)
 {
     this._checkoutAttributeService = checkoutAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._taxCategoryService = taxCategoryService;
     this._workContext = workContext;
     this._currencyService = currencyService;
     this._customerActivityService = customerActivityService;
     this._currencySettings = currencySettings;
     this._measureService = measureService;
     this._measureSettings = measureSettings;
     this._permissionService = permissionService;
     this._storeService = storeService;
     this._storeMappingService = storeMappingService;
 }
 public ManufacturerController(ICategoryService categoryService, IManufacturerService manufacturerService,
     IManufacturerTemplateService manufacturerTemplateService, IProductService productService,
     ICustomerService customerService, IStoreService storeService,
     IStoreMappingService storeMappingService,
     IUrlRecordService urlRecordService, IPictureService pictureService,
     ILanguageService languageService, ILocalizationService localizationService,
     ILocalizedEntityService localizedEntityService, IExportManager exportManager,
     ICustomerActivityService customerActivityService, IAclService aclService, 
     IPermissionService permissionService,
     AdminAreaSettings adminAreaSettings, CatalogSettings catalogSettings)
 {
     this._categoryService = categoryService;
     this._manufacturerTemplateService = manufacturerTemplateService;
     this._manufacturerService = manufacturerService;
     this._productService = productService;
     this._customerService = customerService;
     this._storeService = storeService;
     this._storeMappingService = storeMappingService;
     this._urlRecordService = urlRecordService;
     this._pictureService = pictureService;
     this._languageService = languageService;
     this._localizationService = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._exportManager = exportManager;
     this._customerActivityService = customerActivityService;
     this._aclService = aclService;
     this._permissionService = permissionService;
     this._adminAreaSettings = adminAreaSettings;
     this._catalogSettings = catalogSettings;
 }
Пример #5
0
 public CategoryController(ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
     IManufacturerService manufacturerService, IProductService productService, 
     ICustomerService customerService,
     IUrlRecordService urlRecordService, IPictureService pictureService, ILanguageService languageService,
     ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
     IDiscountService discountService, IPermissionService permissionService,
     IAclService aclService,
     IExportManager exportManager, IWorkContext workContext,
     ICustomerActivityService customerActivityService, AdminAreaSettings adminAreaSettings,
     CatalogSettings catalogSettings)
 {
     this._categoryService = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._manufacturerService = manufacturerService;
     this._productService = productService;
     this._customerService = customerService;
     this._urlRecordService = urlRecordService;
     this._pictureService = pictureService;
     this._languageService = languageService;
     this._localizationService = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._discountService = discountService;
     this._permissionService = permissionService;
     this._aclService = aclService;
     this._exportManager = exportManager;
     this._workContext = workContext;
     this._customerActivityService = customerActivityService;
     this._adminAreaSettings = adminAreaSettings;
     this._catalogSettings = catalogSettings;
 }
 public CopyProductService(IProductService productService,
     IProductAttributeService productAttributeService,
     ILanguageService languageService,
     ILocalizedEntityService localizedEntityService, 
     IPictureService pictureService,
     ICategoryService categoryService, 
     IManufacturerService manufacturerService,
     ISpecificationAttributeService specificationAttributeService,
     IDownloadService downloadService,
     IProductAttributeParser productAttributeParser,
     IUrlRecordService urlRecordService, 
     IStoreMappingService storeMappingService)
 {
     this._productService = productService;
     this._productAttributeService = productAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._pictureService = pictureService;
     this._categoryService = categoryService;
     this._manufacturerService = manufacturerService;
     this._specificationAttributeService = specificationAttributeService;
     this._downloadService = downloadService;
     this._productAttributeParser = productAttributeParser;
     this._urlRecordService = urlRecordService;
     this._storeMappingService = storeMappingService;
 }
Пример #7
0
 public DiyGroupController(IPermissionService permissionService,
     IDiyService branchService, 
     ILanguageService languageService, 
     ILocalizationService localizationService, 
     IStoreMappingService storeMappingService, 
     ILocalizedEntityService localizedEntityService, 
     IStoreService storeService,
     IPictureService pictureService, 
     IUrlRecordService urlRecordService, 
     ICustomerActivityService customerActivityService, 
     IWorkContext workContext,
     ICacheManager cacheManager, 
     DiySettings diySettings, 
     IWebHelper webHelper)
 {
     _permissionService = permissionService;
     _diyService = branchService;
     _languageService = languageService;
     _localizationService = localizationService;
     _storeMappingService = storeMappingService;
     _localizedEntityService = localizedEntityService;
     _storeService = storeService;
     _pictureService = pictureService;
     _urlRecordService = urlRecordService;
     _customerActivityService = customerActivityService;
     _workContext = workContext;
     _cacheManager = cacheManager;
     _diySettings = diySettings;
     _webHelper = webHelper;
 }
        public ManufacturerController(ICategoryService categoryService, IManufacturerService manufacturerService,
            IManufacturerTemplateService manufacturerTemplateService, IProductService productService,
			IStoreService storeService,	IStoreMappingService storeMappingService,
            IUrlRecordService urlRecordService, IPictureService pictureService,
            ILanguageService languageService, ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
            IWorkContext workContext,
            ICustomerActivityService customerActivityService, IPermissionService permissionService,
			IDateTimeHelper dateTimeHelper,
            AdminAreaSettings adminAreaSettings,
			CatalogSettings catalogSettings)
        {
            this._categoryService = categoryService;
            this._manufacturerTemplateService = manufacturerTemplateService;
            this._manufacturerService = manufacturerService;
            this._productService = productService;
            this._storeService = storeService;
            this._storeMappingService = storeMappingService;
            this._urlRecordService = urlRecordService;
            this._pictureService = pictureService;
            this._languageService = languageService;
            this._localizationService = localizationService;
            this._localizedEntityService = localizedEntityService;
            this._workContext = workContext;
            this._customerActivityService = customerActivityService;
            this._permissionService = permissionService;
            this._dateTimeHelper = dateTimeHelper;
            this._adminAreaSettings = adminAreaSettings;
            this._catalogSettings = catalogSettings;
        }
Пример #9
0
        public ImportManager(
			IProductService productService, 
			ICategoryService categoryService,
            IManufacturerService manufacturerService, 
			IPictureService pictureService,
            IUrlRecordService urlRecordService,
			SeoSettings seoSettings,
			IEventPublisher eventPublisher,
			IRepository<Product> rsProduct,
			IRepository<ProductCategory> rsProductCategory,
			IRepository<ProductManufacturer> rsProductManufacturer,
            IRepository<Picture> rsPicture,
			IRepository<ProductPicture> rsProductPicture,
            IRepository<UrlRecord> rsUrlRecord,
            ILanguageService languageService,
            ILocalizedEntityService localizedEntityService,
            IStoreMappingService storeMappingService)
        {
            this._productService = productService;
            this._categoryService = categoryService;
            this._manufacturerService = manufacturerService;
            this._pictureService = pictureService;
            this._urlRecordService = urlRecordService;
            this._seoSettings = seoSettings;
            this._eventPublisher = eventPublisher;
            this._rsProduct = rsProduct;
            this._rsProductCategory = rsProductCategory;
            this._rsProductManufacturer = rsProductManufacturer;
            this._rsProductPicture = rsProductPicture;
            this._rsUrlRecord = rsUrlRecord;
            this._rsPicture = rsPicture;
            this._languageService = languageService;
            this._localizedEntityService = localizedEntityService;
            this._storeMappingService = storeMappingService;
        }
Пример #10
0
 public VendorController(ICustomerService customerService, 
     ILocalizationService localizationService,
     IVendorService vendorService, 
     IPermissionService permissionService,
     IUrlRecordService urlRecordService,
     ILanguageService languageService,
     ILocalizedEntityService localizedEntityService,
     VendorSettings vendorSettings,
     IPictureService pictureService,
     IProductService productService,
     IWorkContext workContext,
     IGenericAttributeService genericAttributeService,
     IWorkflowMessageService workflowMessageService)
 {
     this._customerService = customerService;
     this._localizationService = localizationService;
     this._vendorService = vendorService;
     this._permissionService = permissionService;
     this._urlRecordService = urlRecordService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._vendorSettings = vendorSettings;
     this._pictureService = pictureService;
     this._productService = productService;
     this._workContext = workContext;
     this._workflowMessageService = workflowMessageService;
     this._genericAttributeService = genericAttributeService;
 }
Пример #11
0
 public CountryController(ICountryService countryService,
     IStateProvinceService stateProvinceService,
     ICityService cityService,
     IZipcodeService zipcodeService,
     ILocalizationService localizationService,
     IAddressService addressService,
     IPermissionService permissionService,
     ILocalizedEntityService localizedEntityService,
     ILanguageService languageService,
     IStoreService storeService,
     IStoreMappingService storeMappingService,
     IExportManager exportManager,
     IImportManager importManager)
 {
     this._countryService = countryService;
     this._stateProvinceService = stateProvinceService;
     this._cityService = cityService;
     this._zipcodeService = zipcodeService;
     this._localizationService = localizationService;
     this._addressService = addressService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
     this._storeService = storeService;
     this._storeMappingService = storeMappingService;
     this._exportManager = exportManager;
     this._importManager = importManager;
 }
Пример #12
0
 public ShippingController(IShippingService shippingService, 
     ShippingSettings shippingSettings,
     ISettingService settingService,
     IAddressService addressService,
     ICountryService countryService,
     IStateProvinceService stateProvinceService,
     ILocalizationService localizationService, 
     IPermissionService permissionService,
      ILocalizedEntityService localizedEntityService,
     ILanguageService languageService,
     IPluginFinder pluginFinder,
     IWebHelper webHelper)
 {
     this._shippingService = shippingService;
     this._shippingSettings = shippingSettings;
     this._settingService = settingService;
     this._addressService = addressService;
     this._countryService = countryService;
     this._stateProvinceService = stateProvinceService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
     this._pluginFinder = pluginFinder;
     this._webHelper = webHelper;
 }
Пример #13
0
 public ProductController(IProductService productService, 
     IProductTemplateService productTemplateService,
     ICategoryService categoryService, IManufacturerService manufacturerService,
     IWorkContext workContext, ILanguageService languageService, 
     ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
     ISpecificationAttributeService specificationAttributeService, IPictureService pictureService,
     ITaxCategoryService taxCategoryService, IProductTagService productTagService,
     ICopyProductService copyProductService, IPdfService pdfService,
     IExportManager exportManager, IImportManager importManager,
     ICustomerActivityService customerActivityService,
     IPermissionService permissionService, AdminAreaSettings adminAreaSettings)
 {
     this._productService = productService;
     this._productTemplateService = productTemplateService;
     this._categoryService = categoryService;
     this._manufacturerService = manufacturerService;
     this._workContext = workContext;
     this._languageService = languageService;
     this._localizationService = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._specificationAttributeService = specificationAttributeService;
     this._pictureService = pictureService;
     this._taxCategoryService = taxCategoryService;
     this._productTagService = productTagService;
     this._copyProductService = copyProductService;
     this._pdfService = pdfService;
     this._exportManager = exportManager;
     this._importManager = importManager;
     this._customerActivityService = customerActivityService;
     this._permissionService = permissionService;
     this._adminAreaSettings = adminAreaSettings;
 }
 public BranchGroupReadController(IPermissionService permissionService,
     IBranchService branchService, 
     ILanguageService languageService, 
     ILocalizationService localizationService, 
     ILocalizedEntityService localizedEntityService, 
     IPictureService pictureService, 
     IUrlRecordService urlRecordService, 
     ICustomerActivityService customerActivityService, 
     IWorkContext workContext,
     ICacheManager cacheManager, 
     BranchSettings branchSettings, 
     IWebHelper webHelper)
 {
     _permissionService = permissionService;
     _branchService = branchService;
     _languageService = languageService;
     _localizationService = localizationService;
     _localizedEntityService = localizedEntityService;
     _pictureService = pictureService;
     _urlRecordService = urlRecordService;
     _customerActivityService = customerActivityService;
     _workContext = workContext;
     _cacheManager = cacheManager;
     _branchSettings = branchSettings;
     _webHelper = webHelper;
 }
Пример #15
0
 public TopicController(ITopicService topicService,
     ILanguageService languageService,
     ILocalizedEntityService localizedEntityService, 
     ILocalizationService localizationService,
     IPermissionService permissionService, 
     IStoreService storeService,
     IStoreMappingService storeMappingService,
     IUrlRecordService urlRecordService,
     ITopicTemplateService topicTemplateService,
     ICustomerService customerService,
     ICustomerActivityService customerActivityService,
     IAclService aclService)
 {
     this._topicService = topicService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
     this._storeService = storeService;
     this._storeMappingService = storeMappingService;
     this._urlRecordService = urlRecordService;
     this._topicTemplateService = topicTemplateService;
     this._customerService = customerService;
     this._customerActivityService = customerActivityService;
     this._aclService = aclService;
 }
 public SelectSellController(IProductService productService,
     IProductTemplateService productTemplateService,
     ICategoryService categoryService,
     IManufacturerService manufacturerService,
     ICustomerService customerService,
     IUrlRecordService urlRecordService,
     IWorkContext workContext,
     ILanguageService languageService,
     ILocalizationService localizationService,
     ILocalizedEntityService localizedEntityService,
     ISpecificationAttributeService specificationAttributeService,
     IPictureService pictureService,
     ITaxCategoryService taxCategoryService,
     IProductTagService productTagService,
     ICopyProductService copyProductService,
     IPdfService pdfService,
     IExportManager exportManager,
     IImportManager importManager,
     ICustomerActivityService customerActivityService,
     IPermissionService permissionService,
     IAclService aclService,
     IStoreService storeService,
     IOrderService orderService,
     IStoreMappingService storeMappingService,
     IVendorService vendorService,
     IShippingService shippingService,
     IShipmentService shipmentService,
     ICurrencyService currencyService,
     CurrencySettings currencySettings,
     IMeasureService measureService,
     MeasureSettings measureSettings,
     AdminAreaSettings adminAreaSettings,
     IDateTimeHelper dateTimeHelper,
     IDiscountService discountService,
     IProductAttributeService productAttributeService,
     IBackInStockSubscriptionService backInStockSubscriptionService,
     IShoppingCartService shoppingCartService,
     IProductAttributeFormatter productAttributeFormatter,
     IProductAttributeParser productAttributeParser,
     IDownloadService downloadService,
     IStoreContext storeContext,
     IRepository<StoreMapping> storeMapping)
 {
     _workContext = workContext;
     _productService = productService;
     _pictureService = pictureService;
     _localizationService = localizationService;
     _categoryService = categoryService;
     _manufacturerService = manufacturerService;
     _storeService = storeService;
     _shippingService = shippingService;
     _vendorService = vendorService;
     _storeMappingService = storeMappingService;
     _storeContext = storeContext;
     _storeMapping = storeMapping;
 }
Пример #17
0
 public TopicController(ITopicService topicService, ILanguageService languageService,
     ILocalizedEntityService localizedEntityService, ILocalizationService localizationService,
     IPermissionService permissionService)
 {
     this._topicService = topicService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
 }
 public SpecificationAttributeController(ISpecificationAttributeService specificationAttributeService,
     ILanguageService languageService, ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService, ICustomerActivityService customerActivityService,
     IPermissionService permissionService)
 {
     this._specificationAttributeService = specificationAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._customerActivityService = customerActivityService;
     this._permissionService = permissionService;
 }
Пример #19
0
 public PluginController(IPluginFinder pluginFinder,
     ILocalizationService localizationService, IWebHelper webHelper,
     IPermissionService permissionService, ILanguageService languageService,
     ILocalizedEntityService localizedEntityService)
 {
     this._pluginFinder = pluginFinder;
     this._localizationService = localizationService;
     this._webHelper = webHelper;
     this._permissionService = permissionService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
 }
 public ProductAttributeController(IProductAttributeService productAttributeService,
     ILanguageService languageService, ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService, ICustomerActivityService customerActivityService,
     IPermissionService permissionService)
 {
     this._productAttributeService = productAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._customerActivityService = customerActivityService;
     this._permissionService = permissionService;
 }
Пример #21
0
 public CountryController(ICountryService countryService,
     IStateProvinceService stateProvinceService, ILocalizationService localizationService,
     IAddressService addressService, IPermissionService permissionService,
     ILocalizedEntityService localizedEntityService, ILanguageService languageService)
 {
     this._countryService = countryService;
     this._stateProvinceService = stateProvinceService;
     this._localizationService = localizationService;
     this._addressService = addressService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
 }
 public QuantityUnitController(IQuantityUnitService quantityUnitService,
     ISettingService settingService,
     ILocalizationService localizationService,
     IPermissionService permissionService,
     ILocalizedEntityService localizedEntityService, 
     ILanguageService languageService)
 {
     this._quantityUnitService = quantityUnitService;
     this._settingService = settingService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
 }
        public TopicController(ITopicService topicService, ILanguageService languageService,
            ILocalizedEntityService localizedEntityService, ILocalizationService localizationService,
			IPermissionService permissionService, IStoreService storeService,
            IStoreMappingService storeMappingService, IEventPublisher eventPublisher)
        {
            this._topicService = topicService;
            this._languageService = languageService;
            this._localizedEntityService = localizedEntityService;
            this._localizationService = localizationService;
            this._permissionService = permissionService;
            this._storeService = storeService;
            this._storeMappingService = storeMappingService;
            this._eventPublisher = eventPublisher;
        }
Пример #24
0
 public MessageTemplateController(IMessageTemplateService messageTemplateService, 
     IEmailAccountService emailAccountService, ILanguageService languageService, 
     ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService, IMessageTokenProvider messageTokenProvider, 
     EmailAccountSettings emailAccountSettings)
 {
     this.messageTemplateService = messageTemplateService;
     this.emailAccountService = emailAccountService;
     this.languageService = languageService;
     this.localizedEntityService = localizedEntityService;
     this.localizationService = localizationService;
     this.messageTokenProvider = messageTokenProvider;
     this.emailAccountSettings = emailAccountSettings;
 }
Пример #25
0
 public StoreController(IStoreService storeService,
     ISettingService settingService,
     ILanguageService languageService,
     ILocalizationService localizationService,
     ILocalizedEntityService localizedEntityService,
     IPermissionService permissionService)
 {
     this._storeService = storeService;
     this._settingService = settingService;
     this._languageService = languageService;
     this._localizationService = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._permissionService = permissionService;
 }
 public AddressAttributeController(IAddressAttributeService addressAttributeService,
     ILanguageService languageService, 
     ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService,
     IWorkContext workContext,
     IPermissionService permissionService)
 {
     this._addressAttributeService = addressAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._workContext = workContext;
     this._permissionService = permissionService;
 }
        public ShippingController(IShippingService shippingService,
			ShippingSettings shippingSettings,
            ILocalizedEntityService localizedEntityService,
			ILanguageService languageService,
			PluginMediator pluginMediator,
			ICommonServices services)
        {
            this._shippingService = shippingService;
            this._shippingSettings = shippingSettings;
            this._localizedEntityService = localizedEntityService;
            this._languageService = languageService;
            this._pluginMediator = pluginMediator;
            this._services = services;
        }
Пример #28
0
 public CustomerAttributeController(ICustomerAttributeService customerAttributeService,
     ILanguageService languageService, 
     ILocalizedEntityService localizedEntityService,
     ILocalizationService localizationService,
     IWorkContext workContext,
     IPermissionService permissionService)
 {
     this._customerAttributeService = customerAttributeService;
     this._languageService = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService = localizationService;
     this._workContext = workContext;
     this._permissionService = permissionService;
 }
 public DeliveryTimeController(IDeliveryTimeService deliveryTimeService,
     ISettingService settingService,
     ILocalizationService localizationService,
     IPermissionService permissionService,
     ILocalizedEntityService localizedEntityService, 
     ILanguageService languageService)
 {
     this._deliveryTimeService = deliveryTimeService;
     this._settingService = settingService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
 }
Пример #30
0
 public ShippingController(IShippingService shippingService, ShippingSettings shippingSettings,
     ISettingService settingService, ICountryService countryService,
     ILocalizationService localizationService, IPermissionService permissionService,
      ILocalizedEntityService localizedEntityService, ILanguageService languageService)
 {
     this._shippingService = shippingService;
     this._shippingSettings = shippingSettings;
     this._settingService = settingService;
     this._countryService = countryService;
     this._localizationService = localizationService;
     this._permissionService = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService = languageService;
 }
 public ProductController(IAclService aclService,
                          ICategoryService categoryService,
                          IProductModelFactory productModelFactory,
                          ICopyProductService copyProductService,
                          ICustomerActivityService customerActivityService,
                          ICustomerService customerService,
                          IDownloadService downloadService,
                          ILanguageService languageService,
                          ILocalizationService localizationService,
                          ILocalizedEntityService localizedEntityService,
                          INopFileProvider fileProvider,
                          IPermissionService permissionService,
                          IPictureService pictureService,
                          IProductService productService,
                          IProductTagService productTagService,
                          ISettingService settingService,
                          IStoreMappingService storeMappingService,
                          IStoreService storeService,
                          IUrlRecordService urlRecordService,
                          IWorkContext workContext,
                          VendorSettings vendorSettings)
 {
     this._aclService              = aclService;
     this._categoryService         = categoryService;
     this._productModelFactory     = productModelFactory;
     this._copyProductService      = copyProductService;
     this._customerActivityService = customerActivityService;
     this._customerService         = customerService;
     this._downloadService         = downloadService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._fileProvider            = fileProvider;
     this._permissionService       = permissionService;
     this._pictureService          = pictureService;
     this._productService          = productService;
     this._productTagService       = productTagService;
     this._settingService          = settingService;
     this._storeMappingService     = storeMappingService;
     this._storeService            = storeService;
     this._urlRecordService        = urlRecordService;
     this._workContext             = workContext;
     this._vendorSettings          = vendorSettings;
 }
Пример #32
0
 public CategoryController(ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
                           IManufacturerService manufacturerService, IProductService productService,
                           ICustomerService customerService,
                           IUrlRecordService urlRecordService,
                           IPictureService pictureService,
                           ILanguageService languageService,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           IDiscountService discountService,
                           IPermissionService permissionService,
                           IAclService aclService,
                           IStoreService storeService,
                           IStoreMappingService storeMappingService,
                           IExportManager exportManager,
                           IVendorService vendorService,
                           ICustomerActivityService customerActivityService,
                           CatalogSettings catalogSettings,
                           IWorkContext workContext,
                           IImportManager importManager,
                           ICacheManager cacheManager)
 {
     this._categoryService         = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._manufacturerService     = manufacturerService;
     this._productService          = productService;
     this._customerService         = customerService;
     this._urlRecordService        = urlRecordService;
     this._pictureService          = pictureService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._discountService         = discountService;
     this._permissionService       = permissionService;
     this._vendorService           = vendorService;
     this._aclService              = aclService;
     this._storeService            = storeService;
     this._storeMappingService     = storeMappingService;
     this._exportManager           = exportManager;
     this._customerActivityService = customerActivityService;
     this._catalogSettings         = catalogSettings;
     this._workContext             = workContext;
     this._importManager           = importManager;
     this._cacheManager            = cacheManager;
 }
 public PaymentExpenditureController(
     IContractMonitorService contractMonitorService,
     IConstructionModelFactory constructionModelFactory,
     IConstructionService constructionService,
     IPriceFormatter priceFormatter,
     IWorkTaskService workTaskService,
     ICustomerService customerService,
     IProcuringAgencyService procuringAgencyService,
     IContractLogService contractLogService,
     IContractTypeService contractTypeService,
     IContractFormService contractFormService,
     ILocalizationService localizationService,
     ILocalizedEntityService localizedEntityService,
     IPermissionService permissionService,
     IContractModelFactory contractModelFactory,
     IWorkContext workContext,
     IContractService contractService,
     INotificationService notificationService,
     IPrivateMessagesModelFactory privateMessagesModelFactory,
     IUnitService unitService,
     IPaymentAdvanceFactory paymentAdvanceFactory,
     IPaymentAdvanceService paymentAdvanceService,
     IContractPaymentService contractPaymentService,
     ICurrencyService currencyService)
 {
     this._constructionService    = constructionService;
     this._priceFormatter         = priceFormatter;
     this._workTaskService        = workTaskService;
     this._customerService        = customerService;
     this._notificationService    = notificationService;
     this._contractLogService     = contractLogService;
     this._contractFormService    = contractFormService;
     this._contractModelFactory   = contractModelFactory;
     this._localizationService    = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._permissionService      = permissionService;
     this._contractService        = contractService;
     this._workContext            = workContext;
     this._unitService            = unitService;
     this._paymentAdvanceFactory  = paymentAdvanceFactory;
     this._paymentAdvanceService  = paymentAdvanceService;
     this._contractPaymentService = contractPaymentService;
     this._currencyService        = currencyService;
 }
Пример #34
0
 public ArticleCategoryController(
     IModelTemplateService modelTemplateService,
     ILocalizationService localizationService,
     ILocalizedEntityService localizedEntityService,
     IUserService userService,
     UserSettings userSettings,
     IArticleCategoryService categoryService,
     IUrlRecordService urlRecordService,
     ILanguageService languageService,
     IPictureService pictureService,
     IAclService aclService,
     IUserActivityService userActivityService,
     ISiteService siteService, ISiteMappingService siteMappingService,
     IDateTimeHelper dateTimeHelper,
     IEventPublisher eventPublisher,
     ArticleCatalogSettings catalogSettings,
     IPermissionService permissionService,
     IChannelService channelService,
     IWorkContext workContext,
     ISiteContext siteContext,
     SiteInformationSettings siteSettings)
 {
     this._modelTemplateService   = modelTemplateService;
     this._categoryService        = categoryService;
     this._localizedEntityService = localizedEntityService;
     this._urlRecordService       = urlRecordService;
     this._localizationService    = localizationService;
     this._userService            = userService;
     this._userSettings           = userSettings;
     this._userActivityService    = userActivityService;
     this._aclService             = aclService;
     this._languageService        = languageService;
     this._pictureService         = pictureService;
     this._siteService            = siteService;
     this._siteMappingService     = siteMappingService;
     this._dateTimeHelper         = dateTimeHelper;
     this._eventPublisher         = eventPublisher;
     this._workContext            = workContext;
     this._catalogSettings        = catalogSettings;
     this._permissionService      = permissionService;
     this._channelService         = channelService;
     this._siteContext            = siteContext;
     this._siteSettings           = siteSettings;
 }
Пример #35
0
 public CurrencyController(ICurrencyService currencyService,
                           CurrencySettings currencySettings, ISettingService settingService,
                           IDateTimeHelper dateTimeHelper, ILocalizationService localizationService,
                           IPermissionService permissionService,
                           ILocalizedEntityService localizedEntityService, ILanguageService languageService,
                           IStoreService storeService,
                           IStoreMappingService storeMappingService)
 {
     this._currencyService        = currencyService;
     this._currencySettings       = currencySettings;
     this._settingService         = settingService;
     this._dateTimeHelper         = dateTimeHelper;
     this._localizationService    = localizationService;
     this._permissionService      = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService        = languageService;
     this._storeService           = storeService;
     this._storeMappingService    = storeMappingService;
 }
 public SpecificationAttributeController(ISpecificationAttributeService specificationAttributeService,
                                         ICategorySpecificationAtrributeService categorySpecificationAtrributeService,
                                         ICategoryService categoryService,
                                         ILanguageService languageService,
                                         ILocalizedEntityService localizedEntityService,
                                         ILocalizationService localizationService,
                                         ICustomerActivityService customerActivityService,
                                         IPermissionService permissionService, IProductService productService)
 {
     this._specificationAttributeService         = specificationAttributeService;
     this._categorySpecificationAtrributeService = categorySpecificationAtrributeService;
     this._categoryService         = categoryService;
     this._languageService         = languageService;
     this._localizedEntityService  = localizedEntityService;
     this._localizationService     = localizationService;
     this._customerActivityService = customerActivityService;
     this._permissionService       = permissionService;
     this._productService          = productService;
 }
Пример #37
0
 public StoreMappingController(ICustomerService customerService, IStoreService storeService, IStoreMappingService storeMappingService,
                               ISettingService settingService,
                               ILanguageService languageService,
                               ILocalizationService localizationService,
                               ILocalizedEntityService localizedEntityService,
                               IPermissionService permissionService,
                               IWorkContext workContext
                               )
 {
     this._customerService        = customerService;
     this._storeService           = storeService;
     this._storeMappingService    = storeMappingService;
     this._settingService         = settingService;
     this._languageService        = languageService;
     this._localizationService    = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._permissionService      = permissionService;
     this._workContext            = workContext;
 }
Пример #38
0
 public SettingController(
     SmartDbContext db,
     ILocalizedEntityService localizedEntityService,
     StoreDependingSettingHelper storeDependingSettingHelper,
     IDateTimeHelper dateTimeHelper,
     ICookieConsentManager cookieManager,
     Lazy <IMediaTracker> mediaTracker,
     Lazy <IMenuService> menuService,
     PrivacySettings privacySettings)
 {
     _db = db;
     _localizedEntityService      = localizedEntityService;
     _storeDependingSettingHelper = storeDependingSettingHelper;
     _dateTimeHelper  = dateTimeHelper;
     _cookieManager   = cookieManager;
     _mediaTracker    = mediaTracker;
     _menuService     = menuService;
     _privacySettings = privacySettings;
 }
Пример #39
0
        public LinkResolver(
            ICommonServices services,
            IUrlRecordService urlRecordService,
            ILocalizedEntityService localizedEntityService,
            IAclService aclService,
            IStoreMappingService storeMappingService,
            ITopicService topicService,
            UrlHelper urlHelper)
        {
            _services               = services;
            _urlRecordService       = urlRecordService;
            _localizedEntityService = localizedEntityService;
            _aclService             = aclService;
            _storeMappingService    = storeMappingService;
            _topicService           = topicService;
            _urlHelper              = urlHelper;

            QuerySettings = DbQuerySettings.Default;
        }
Пример #40
0
 public TopicController(
     ITopicService topicService,
     ILanguageService languageService,
     ILocalizedEntityService localizedEntityService,
     IStoreMappingService storeMappingService,
     IUrlRecordService urlRecordService,
     IAclService aclService,
     IMenuStorage menuStorage,
     ILinkResolver linkResolver)
 {
     _topicService           = topicService;
     _languageService        = languageService;
     _localizedEntityService = localizedEntityService;
     _storeMappingService    = storeMappingService;
     _urlRecordService       = urlRecordService;
     _aclService             = aclService;
     _menuStorage            = menuStorage;
     _linkResolver           = linkResolver;
 }
Пример #41
0
 public CategoryController(IBaseService baseService, ILogger logger, IWebHelper webHelper,
                           ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
                           IManufacturerService manufacturerService, IProductService productService,
                           ICustomerService customerService,
                           IUrlRecordService urlRecordService,
                           IPictureService pictureService,
                           ILanguageService languageService,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           IDiscountService discountService,
                           IPermissionService permissionService,
                           IAclService aclService,
                           IStoreService storeService,
                           IStoreMappingService storeMappingService,
                           //IExportManager exportManager,
                           //IImportManager importManager,
                           IVendorService vendorService,
                           ICustomerActivityService customerActivityService,
                           ISettingService settingService)
     : base(baseService, logger, webHelper)
 {
     this._categoryService         = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._manufacturerService     = manufacturerService;
     this._productService          = productService;
     this._customerService         = customerService;
     this._urlRecordService        = urlRecordService;
     this._pictureService          = pictureService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._discountService         = discountService;
     this._permissionService       = permissionService;
     this._vendorService           = vendorService;
     this._aclService          = aclService;
     this._storeService        = storeService;
     this._storeMappingService = storeMappingService;
     //this._importManager = importManager;
     //this._exportManager = exportManager;
     this._customerActivityService = customerActivityService;
     this._settingService          = settingService;
     this._catalogSettings         = this._settingService.LoadSetting <CatalogSettings>();
 }
Пример #42
0
        public MessageTemplateService(
            IRequestCache requestCache,
            IRepository <StoreMapping> storeMappingRepository,
            ILanguageService languageService,
            ILocalizedEntityService localizedEntityService,
            IStoreMappingService storeMappingService,
            IRepository <MessageTemplate> messageTemplateRepository,
            IEventPublisher eventPublisher)
        {
            this._requestCache              = requestCache;
            this._storeMappingRepository    = storeMappingRepository;
            this._languageService           = languageService;
            this._localizedEntityService    = localizedEntityService;
            this._storeMappingService       = storeMappingService;
            this._messageTemplateRepository = messageTemplateRepository;
            this._eventPublisher            = eventPublisher;

            this.QuerySettings = DbQuerySettings.Default;
        }
 public CopyProductService(IProductService productService,
                           IProductAttributeService productAttributeService, ILanguageService languageService,
                           ILocalizedEntityService localizedEntityService, IPictureService pictureService,
                           ICategoryService categoryService, IManufacturerService manufacturerService,
                           ISpecificationAttributeService specificationAttributeService, IDownloadService downloadService,
                           IProductAttributeParser productAttributeParser, IProductTagService productTagService)
 {
     this._productService                = productService;
     this._productAttributeService       = productAttributeService;
     this._languageService               = languageService;
     this._localizedEntityService        = localizedEntityService;
     this._pictureService                = pictureService;
     this._categoryService               = categoryService;
     this._manufacturerService           = manufacturerService;
     this._specificationAttributeService = specificationAttributeService;
     this._downloadService               = downloadService;
     this._productAttributeParser        = productAttributeParser;
     this._productTagService             = productTagService;
 }
Пример #44
0
 public MenuController(
     IMenuStorage menuStorage,
     ILanguageService languageService,
     ILocalizedEntityService localizedEntityService,
     IStoreMappingService storeMappingService,
     IAclService aclService,
     ICustomerService customerService,
     IEnumerable <Lazy <IMenuItemProvider, MenuItemProviderMetadata> > menuItemProviders,
     AdminAreaSettings adminAreaSettings)
 {
     _menuStorage            = menuStorage;
     _languageService        = languageService;
     _localizedEntityService = localizedEntityService;
     _storeMappingService    = storeMappingService;
     _aclService             = aclService;
     _customerService        = customerService;
     _menuItemProviders      = menuItemProviders.ToDictionarySafe(x => x.Metadata.ProviderName, x => x);
     _adminAreaSettings      = adminAreaSettings;
 }
 public MessageTemplateController(IMessageTemplateService messageTemplateService,
                                  IEmailAccountService emailAccountService, ILanguageService languageService,
                                  ILocalizedEntityService localizedEntityService,
                                  ILocalizationService localizationService, IMessageTokenProvider messageTokenProvider,
                                  IPermissionService permissionService, IStoreService storeService,
                                  IStoreMappingService storeMappingService,
                                  EmailAccountSettings emailAccountSettings)
 {
     this._messageTemplateService = messageTemplateService;
     this._emailAccountService    = emailAccountService;
     this._languageService        = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService    = localizationService;
     this._messageTokenProvider   = messageTokenProvider;
     this._permissionService      = permissionService;
     this._storeService           = storeService;
     this._storeMappingService    = storeMappingService;
     this._emailAccountSettings   = emailAccountSettings;
 }
Пример #46
0
 public SearchController(
     CatalogHelper catalogHelper,
     ICatalogSearchService catalogSearchService,
     ILocalizedEntityService localizedEntityService,
     MediaSettings mediaSettings,
     SearchSettings searchSettings,
     CatalogSettings catalogSettings,
     Lazy <IProductService> productService,
     ProductUrlHelper productUrlHelper)
 {
     _catalogHelper          = catalogHelper;
     _catalogSearchService   = catalogSearchService;
     _localizedEntityService = localizedEntityService;
     _mediaSettings          = mediaSettings;
     _searchSettings         = searchSettings;
     _catalogSettings        = catalogSettings;
     _productService         = productService;
     _productUrlHelper       = productUrlHelper;
 }
Пример #47
0
 public CategoryController(ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
                           IPublisherService publisherService, IArticleService articleService,
                           ICustomerService customerService,
                           IUrlRecordService urlRecordService,
                           IPictureService pictureService,
                           ILanguageService languageService,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           IPermissionService permissionService,
                           IAclService aclService,
                           IStoreService storeService,
                           IStoreMappingService storeMappingService,
                           IExportManager exportManager,
                           IContributorService contributorService,
                           ICustomerActivityService customerActivityService,
                           CatalogSettings catalogSettings,
                           IWorkContext workContext,
                           IImportManager importManager,
                           ICacheManager cacheManager)
 {
     this._categoryService         = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._publisherService        = publisherService;
     this._articleService          = articleService;
     this._customerService         = customerService;
     this._urlRecordService        = urlRecordService;
     this._pictureService          = pictureService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._permissionService       = permissionService;
     this._contributorService      = contributorService;
     this._aclService              = aclService;
     this._storeService            = storeService;
     this._storeMappingService     = storeMappingService;
     this._exportManager           = exportManager;
     this._customerActivityService = customerActivityService;
     this._catalogSettings         = catalogSettings;
     this._workContext             = workContext;
     this._importManager           = importManager;
     this._cacheManager            = cacheManager;
 }
Пример #48
0
 public CategoryController(IAclService aclService,
                           ICacheKeyService cacheKeyService,
                           ICategoryModelFactory categoryModelFactory,
                           ICategoryService categoryService,
                           ICustomerActivityService customerActivityService,
                           ICustomerService customerService,
                           IDiscountService discountService,
                           IExportManager exportManager,
                           IImportManager importManager,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           INotificationService notificationService,
                           IPermissionService permissionService,
                           IPictureService pictureService,
                           IProductService productService,
                           IStaticCacheManager staticCacheManager,
                           IStoreMappingService storeMappingService,
                           IStoreService storeService,
                           IUrlRecordService urlRecordService,
                           IWorkContext workContext)
 {
     _aclService              = aclService;
     _cacheKeyService         = cacheKeyService;
     _categoryModelFactory    = categoryModelFactory;
     _categoryService         = categoryService;
     _customerActivityService = customerActivityService;
     _customerService         = customerService;
     _discountService         = discountService;
     _exportManager           = exportManager;
     _importManager           = importManager;
     _localizationService     = localizationService;
     _localizedEntityService  = localizedEntityService;
     _notificationService     = notificationService;
     _permissionService       = permissionService;
     _pictureService          = pictureService;
     _productService          = productService;
     _staticCacheManager      = staticCacheManager;
     _storeMappingService     = storeMappingService;
     _storeService            = storeService;
     _urlRecordService        = urlRecordService;
     _workContext             = workContext;
 }
Пример #49
0
 public ProductAttributeController(ICustomerActivityService customerActivityService,
                                   ILocalizationService localizationService,
                                   ILocalizedEntityService localizedEntityService,
                                   INotificationService notificationService,
                                   IPermissionService permissionService,
                                   IProductAttributeModelFactory productAttributeModelFactory,
                                   IProductAttributeService productAttributeService,
                                   IProductService productService,
                                   ILanguageService languageService)
 {
     _customerActivityService      = customerActivityService;
     _localizationService          = localizationService;
     _localizedEntityService       = localizedEntityService;
     _notificationService          = notificationService;
     _permissionService            = permissionService;
     _productAttributeModelFactory = productAttributeModelFactory;
     _productAttributeService      = productAttributeService;
     _productService  = productService;
     _languageService = languageService;
 }
Пример #50
0
 public TopicController(ITopicService topicService,
                        ILanguageService languageService,
                        ILocalizedEntityService localizedEntityService,
                        ILocalizationService localizationService,
                        IPermissionService permissionService,
                        IUrlRecordService urlRecordService,
                        ITopicTemplateService topicTemplateService,
                        ICustomerService customerService,
                        IAclService aclService)
 {
     _topicService           = topicService;
     _languageService        = languageService;
     _localizedEntityService = localizedEntityService;
     _localizationService    = localizationService;
     _permissionService      = permissionService;
     _urlRecordService       = urlRecordService;
     _topicTemplateService   = topicTemplateService;
     _customerService        = customerService;
     _aclService             = aclService;
 }
Пример #51
0
        //private readonly ICacheManager _cacheManager;

        #endregion

        #region Ctor
        public CountryService(/*ICacheManager cacheManager,*/
            IRepository <Country> countryRepository,
            IRepository <StoreMapping> storeMappingRepository,
            IStoreContext storeContext,
            ISettingService settingService,
            //IUnitOfWork unitOfWork,
            ILanguageService languageService,
            ILocalizedEntityService localizedEntityService
            )
        {
            //this._cacheManager = cacheManager;
            this._countryRepository      = countryRepository;
            this._storeMappingRepository = storeMappingRepository;
            this._storeContext           = storeContext;
            this._settingService         = settingService;
            this._catalogSettings        = _settingService.LoadSetting <CatalogSettings>();
            //this._unitOfWork = unitOfWork;
            this._languageService        = languageService;
            this._localizedEntityService = localizedEntityService;
        }
Пример #52
0
 public CopyProductService(ICategoryService categoryService,
                           IDownloadService downloadService,
                           ILanguageService languageService,
                           ILocalizationService localizationService,
                           ILocalizedEntityService localizedEntityService,
                           IPictureService pictureService,
                           IProductService productService,
                           IStoreMappingService storeMappingService,
                           IUrlRecordService urlRecordService)
 {
     this._categoryService        = categoryService;
     this._downloadService        = downloadService;
     this._languageService        = languageService;
     this._localizationService    = localizationService;
     this._localizedEntityService = localizedEntityService;
     this._pictureService         = pictureService;
     this._productService         = productService;
     this._storeMappingService    = storeMappingService;
     this._urlRecordService       = urlRecordService;
 }
Пример #53
0
 public ContentSliderController(ISettingService settingService,
                                ILocalizationService localizationService,
                                IPermissionService permissionService,
                                ILocalizedEntityService localizedEntityService,
                                ILanguageService languageService,
                                IPictureService pictureService,
                                ContentSliderSettings contentSliderSettings,
                                IStoreService storeService,
                                IWorkContext workContext)
 {
     this._settingService         = settingService;
     this._localizationService    = localizationService;
     this._permissionService      = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService        = languageService;
     this._pictureService         = pictureService;
     this._contentSliderSettings  = contentSliderSettings;
     this._storeService           = storeService;
     this._workContext            = workContext;
 }
Пример #54
0
 public MessageTemplateController(ICustomerActivityService customerActivityService,
                                  ILocalizationService localizationService,
                                  ILocalizedEntityService localizedEntityService,
                                  IMessageTemplateModelFactory messageTemplateModelFactory,
                                  IMessageTemplateService messageTemplateService,
                                  IPermissionService permissionService,
                                  IStoreMappingService storeMappingService,
                                  IStoreService storeService,
                                  IWorkflowMessageService workflowMessageService)
 {
     this._customerActivityService     = customerActivityService;
     this._localizationService         = localizationService;
     this._localizedEntityService      = localizedEntityService;
     this._messageTemplateModelFactory = messageTemplateModelFactory;
     this._messageTemplateService      = messageTemplateService;
     this._permissionService           = permissionService;
     this._storeMappingService         = storeMappingService;
     this._storeService           = storeService;
     this._workflowMessageService = workflowMessageService;
 }
Пример #55
0
 public MessageTemplateService(CatalogSettings catalogSettings,
                               ICacheManager cacheManager,
                               IEventPublisher eventPublisher,
                               ILanguageService languageService,
                               ILocalizationService localizationService,
                               ILocalizedEntityService localizedEntityService,
                               IRepository <MessageTemplate> messageTemplateRepository,
                               IRepository <StoreMapping> storeMappingRepository,
                               IStoreMappingService storeMappingService)
 {
     _catalogSettings           = catalogSettings;
     _cacheManager              = cacheManager;
     _eventPublisher            = eventPublisher;
     _languageService           = languageService;
     _localizationService       = localizationService;
     _localizedEntityService    = localizedEntityService;
     _messageTemplateRepository = messageTemplateRepository;
     _storeMappingRepository    = storeMappingRepository;
     _storeMappingService       = storeMappingService;
 }
Пример #56
0
 public NebimIntegrationProvider(IProductService productService, ILanguageService languageService,
                                 ILocalizationService localizationService, ICategoryService categoryService,
                                 IManufacturerService manufacturerService, IPictureService pictureService,
                                 ILocalizedEntityService localizedEntityService,
                                 ICurrencyService currencyService, CurrencySettings currencySettings,
                                 IOrderService orderService, ILogger logger, NebimIntegrationSettings NebimIntegrationSettings)
 {
     this._productService         = productService;
     this._languageService        = languageService;
     this._localizationService    = localizationService;
     this._categoryService        = categoryService;
     this._manufacturerService    = manufacturerService;
     this._pictureService         = pictureService;
     this._localizedEntityService = localizedEntityService;
     this._currencyService        = currencyService;
     this._currencySettings       = currencySettings;
     this._orderService           = orderService;
     this._logger = logger;
     this._NebimIntegrationSettings = NebimIntegrationSettings;
 }
Пример #57
0
 public TopicController(ITopicService topicService,
                        ILanguageService languageService,
                        ILocalizedEntityService localizedEntityService,
                        ILocalizationService localizationService,
                        IPermissionService permissionService,
                        IStoreService storeService,
                        IStoreMappingService storeMappingService,
                        IUrlRecordService urlRecordService,
                        ITopicTemplateService topicTemplateService)
 {
     this._topicService           = topicService;
     this._languageService        = languageService;
     this._localizedEntityService = localizedEntityService;
     this._localizationService    = localizationService;
     this._permissionService      = permissionService;
     this._storeService           = storeService;
     this._storeMappingService    = storeMappingService;
     this._urlRecordService       = urlRecordService;
     this._topicTemplateService   = topicTemplateService;
 }
Пример #58
0
 public CountryController(ICountryService countryService,
                          IStateProvinceService stateProvinceService,
                          ILocalizationService localizationService,
                          IAddressService addressService,
                          IPermissionService permissionService,
                          ILocalizedEntityService localizedEntityService,
                          ILanguageService languageService,
                          IStoreService storeService,
                          IStoreMappingService storeMappingService)
 {
     this._countryService         = countryService;
     this._stateProvinceService   = stateProvinceService;
     this._localizationService    = localizationService;
     this._addressService         = addressService;
     this._permissionService      = permissionService;
     this._localizedEntityService = localizedEntityService;
     this._languageService        = languageService;
     this._storeService           = storeService;
     this._storeMappingService    = storeMappingService;
 }
Пример #59
0
 public MessageTemplateController(IMessageTemplateService messageTemplateService,
                                  IEmailAccountService emailAccountService,
                                  ILanguageService languageService,
                                  ILocalizedEntityService localizedEntityService,
                                  ILocalizationService localizationService,
                                  IMessageTokenProvider messageTokenProvider,
                                  IPermissionService permissionService,
                                  IWorkflowMessageService workflowMessageService,
                                  EmailAccountSettings emailAccountSettings)
 {
     _messageTemplateService = messageTemplateService;
     _emailAccountService    = emailAccountService;
     _languageService        = languageService;
     _localizedEntityService = localizedEntityService;
     _localizationService    = localizationService;
     _messageTokenProvider   = messageTokenProvider;
     _permissionService      = permissionService;
     _workflowMessageService = workflowMessageService;
     _emailAccountSettings   = emailAccountSettings;
 }
 public ReturnRequestController(ICustomerActivityService customerActivityService,
                                ILocalizationService localizationService,
                                ILocalizedEntityService localizedEntityService,
                                INotificationService notificationService,
                                IOrderService orderService,
                                IPermissionService permissionService,
                                IReturnRequestModelFactory returnRequestModelFactory,
                                IReturnRequestService returnRequestService,
                                IWorkflowMessageService workflowMessageService)
 {
     _customerActivityService   = customerActivityService;
     _localizationService       = localizationService;
     _localizedEntityService    = localizedEntityService;
     _notificationService       = notificationService;
     _orderService              = orderService;
     _permissionService         = permissionService;
     _returnRequestModelFactory = returnRequestModelFactory;
     _returnRequestService      = returnRequestService;
     _workflowMessageService    = workflowMessageService;
 }