public SettingController(ISettingService settingService,
     ICountryService countryService, IStateProvinceService stateProvinceService,
     IAddressService addressService, ITaxCategoryService taxCategoryService,
     ICurrencyService currencyService, IPictureService pictureService, 
     ILocalizationService localizationService, IDateTimeHelper dateTimeHelper,
     IOrderService orderService, IEncryptionService encryptionService,
     IThemeProvider themeProvider, ICustomerService customerService, 
     ICustomerActivityService customerActivityService, IPermissionService permissionService,
     IWebHelper webHelper, IFulltextService fulltextService, 
     IMaintenanceService maintenanceService, IStoreService storeService,
     IWorkContext workContext, IGenericAttributeService genericAttributeService)
 {
     this._settingService = settingService;
     this._countryService = countryService;
     this._stateProvinceService = stateProvinceService;
     this._addressService = addressService;
     this._taxCategoryService = taxCategoryService;
     this._currencyService = currencyService;
     this._pictureService = pictureService;
     this._localizationService = localizationService;
     this._dateTimeHelper = dateTimeHelper;
     this._orderService = orderService;
     this._encryptionService = encryptionService;
     this._themeProvider = themeProvider;
     this._customerService = customerService;
     this._customerActivityService = customerActivityService;
     this._permissionService = permissionService;
     this._webHelper = webHelper;
     this._fulltextService = fulltextService;
     this._maintenanceService = maintenanceService;
     this._storeService = storeService;
     this._workContext = workContext;
     this._genericAttributeService = genericAttributeService;
 }
Пример #2
0
 public SettingModelFactory(IAddressAttributeModelFactory addressAttributeModelFactory,
                            IAddressService addressService,
                            IBaseAdminModelFactory baseAdminModelFactory,
                            IUserAttributeModelFactory userAttributeModelFactory,
                            IDateTimeHelper dateTimeHelper,
                            IFulltextService fulltextService,
                            ILocalizedModelFactory localizedModelFactory,
                            IGenericAttributeService genericAttributeService,
                            ILocalizationService localizationService,
                            IMaintenanceService maintenanceService,
                            IPictureService pictureService,
                            ISettingService settingService,
                            IThemeProvider themeProvider,
                            IWorkContext workContext)
 {
     this._addressAttributeModelFactory = addressAttributeModelFactory;
     this._addressService            = addressService;
     this._baseAdminModelFactory     = baseAdminModelFactory;
     this._userAttributeModelFactory = userAttributeModelFactory;
     this._dateTimeHelper            = dateTimeHelper;
     this._fulltextService           = fulltextService;
     this._localizedModelFactory     = localizedModelFactory;
     this._genericAttributeService   = genericAttributeService;
     this._localizationService       = localizationService;
     this._maintenanceService        = maintenanceService;
     this._pictureService            = pictureService;
     this._settingService            = settingService;
     this._themeProvider             = themeProvider;
     this._workContext = workContext;
 }
Пример #3
0
 public SettingController(IAddressService addressService,
                          IUserActivityService userActivityService,
                          IUserService userService,
                          IEncryptionService encryptionService,
                          IFulltextService fulltextService,
                          IGenericAttributeService genericAttributeService,
                          ILocalizedEntityService localizedEntityService,
                          ILocalizationService localizationService,
                          IMaintenanceService maintenanceService,
                          IPermissionService permissionService,
                          IPictureService pictureService,
                          ISettingModelFactory settingModelFactory,
                          ISettingService settingService,
                          IWorkContext workContext,
                          NopConfig config)
 {
     this._addressService          = addressService;
     this._userActivityService     = userActivityService;
     this._userService             = userService;
     this._encryptionService       = encryptionService;
     this._fulltextService         = fulltextService;
     this._genericAttributeService = genericAttributeService;
     this._localizedEntityService  = localizedEntityService;
     this._localizationService     = localizationService;
     this._maintenanceService      = maintenanceService;
     this._permissionService       = permissionService;
     this._pictureService          = pictureService;
     this._settingModelFactory     = settingModelFactory;
     this._settingService          = settingService;
     this._workContext             = workContext;
     this._config = config;
 }
Пример #4
0
 public SettingController(ISettingService settingService,
                          IPictureService pictureService,
                          ILocalizationService localizationService,
                          IDateTimeHelper dateTimeHelper,
                          IEncryptionService encryptionService,
                          IThemeProvider themeProvider,
                          ICustomerService customerService,
                          ICustomerActivityService customerActivityService,
                          IPermissionService permissionService,
                          IFulltextService fulltextService,
                          IMaintenanceService maintenanceService,
                          IWorkContext workContext,
                          IGenericAttributeService genericAttributeService,
                          ILanguageService languageService,
                          ILocalizedEntityService localizedEntityService, ICategoryService categoryService)
 {
     _settingService          = settingService;
     _pictureService          = pictureService;
     _localizationService     = localizationService;
     _dateTimeHelper          = dateTimeHelper;
     _encryptionService       = encryptionService;
     _themeProvider           = themeProvider;
     _customerService         = customerService;
     _customerActivityService = customerActivityService;
     _permissionService       = permissionService;
     _fulltextService         = fulltextService;
     _maintenanceService      = maintenanceService;
     _workContext             = workContext;
     _genericAttributeService = genericAttributeService;
     _languageService         = languageService;
     _localizedEntityService  = localizedEntityService;
     _categoryService         = categoryService;
 }
Пример #5
0
 public CommonController(ISearchTermService searchTermService, IPdfService pdfService, IMaintenanceService maintenanceService, IGenericAttributeService genericAttributeService,
                         IFulltextService fulltextService, IAddressService addressService, IAddressAttributeService addressAttributeService, IAddressAttributeParser addressAttributeParser,
                         IAddressAttributeFormatter addressAttributeFormatter)
 {
     this._searchTermService         = searchTermService;
     this._pdfService                = pdfService;
     this._maintenanceService        = maintenanceService;
     this._genericAttributeService   = genericAttributeService;
     this._fulltextService           = fulltextService;
     this._addressService            = addressService;
     this._addressAttributeService   = addressAttributeService;
     this._addressAttributeParser    = addressAttributeParser;
     this._addressAttributeFormatter = addressAttributeFormatter;
 }
Пример #6
0
        public SettingController(ISettingService settingService,
            ICountryService countryService, IStateProvinceService stateProvinceService,
            IAddressService addressService, ITaxCategoryService taxCategoryService,
            ICurrencyService currencyService, IPictureService pictureService, 
            ILocalizationService localizationService, IDateTimeHelper dateTimeHelper,
            IOrderService orderService, IEncryptionService encryptionService,
            IThemeProvider themeProvider, ICustomerService customerService, 
            ICustomerActivityService customerActivityService, IPermissionService permissionService,
            IWebHelper webHelper, IFulltextService fulltextService,
            BlogSettings blogSettings,
            ForumSettings forumSettings, NewsSettings newsSettings,
            ShippingSettings shippingSettings, TaxSettings taxSettings,
            CatalogSettings catalogSettings, RewardPointsSettings rewardPointsSettings,
            CurrencySettings currencySettings, OrderSettings orderSettings,
            ShoppingCartSettings shoppingCartSettings, MediaSettings mediaSettings,
            CustomerSettings customerSettings,
            DateTimeSettings dateTimeSettings, StoreInformationSettings storeInformationSettings,
            SeoSettings seoSettings,SecuritySettings securitySettings, PdfSettings pdfSettings,
            LocalizationSettings localizationSettings, AdminAreaSettings adminAreaSettings,
            CaptchaSettings captchaSettings, ExternalAuthenticationSettings externalAuthenticationSettings,
            CommonSettings commonSettings)
        {
            this._settingService = settingService;
            this._countryService = countryService;
            this._stateProvinceService = stateProvinceService;
            this._addressService = addressService;
            this._taxCategoryService = taxCategoryService;
            this._currencyService = currencyService;
            this._pictureService = pictureService;
            this._localizationService = localizationService;
            this._dateTimeHelper = dateTimeHelper;
            this._orderService = orderService;
            this._encryptionService = encryptionService;
            this._themeProvider = themeProvider;
            this._customerService = customerService;
            this._customerActivityService = customerActivityService;
            this._permissionService = permissionService;
            this._webHelper = webHelper;
            this._fulltextService = fulltextService;

            this._blogSettings = blogSettings;
            this._forumSettings = forumSettings;
            this._newsSettings = newsSettings;
            this._shippingSettings = shippingSettings;
            this._taxSettings = taxSettings;
            this._catalogSettings = catalogSettings;
            this._rewardPointsSettings = rewardPointsSettings;
            this._currencySettings = currencySettings;
            this._orderSettings = orderSettings;
            this._shoppingCartSettings = shoppingCartSettings;
            this._mediaSettings = mediaSettings;
            this._customerSettings = customerSettings;
            this._dateTimeSettings = dateTimeSettings;
            this._storeInformationSettings = storeInformationSettings;
            this._seoSettings = seoSettings;
            this._securitySettings = securitySettings;
            this._pdfSettings = pdfSettings;
            this._localizationSettings = localizationSettings;
            this._adminAreaSettings = adminAreaSettings;
            this._captchaSettings = captchaSettings;
            this._externalAuthenticationSettings = externalAuthenticationSettings;
            this._commonSettings = commonSettings;
        }
Пример #7
0
        public SettingController(
            ICountryService countryService,
			IStateProvinceService stateProvinceService,
            IAddressService addressService,
			ITaxCategoryService taxCategoryService,
			IPictureService pictureService, 
            IDateTimeHelper dateTimeHelper,
            IOrderService orderService,
			IEncryptionService encryptionService,
            IThemeRegistry themeRegistry,
			ICustomerService customerService, 
            ICustomerActivityService customerActivityService,
            IFulltextService fulltextService,
			IMaintenanceService maintenanceService,
			IGenericAttributeService genericAttributeService,
			ILocalizedEntityService localizedEntityService,
			ILanguageService languageService,
			IDeliveryTimeService deliveryTimesService,
			ICommonServices services)
        {
            this._countryService = countryService;
            this._stateProvinceService = stateProvinceService;
            this._addressService = addressService;
            this._taxCategoryService = taxCategoryService;
            this._pictureService = pictureService;
            this._dateTimeHelper = dateTimeHelper;
            this._orderService = orderService;
            this._encryptionService = encryptionService;
            this._themeRegistry = themeRegistry;
            this._customerService = customerService;
            this._customerActivityService = customerActivityService;
            this._fulltextService = fulltextService;
            this._maintenanceService = maintenanceService;
            this._genericAttributeService = genericAttributeService;
            this._localizedEntityService = localizedEntityService;
            this._languageService = languageService;
            this._deliveryTimesService = deliveryTimesService;
            this._services = services;
        }