當前位置: 首頁>>代碼示例>>C#>>正文


C# Domain.StoreInformationSettings類代碼示例

本文整理匯總了C#中Nop.Core.Domain.StoreInformationSettings的典型用法代碼示例。如果您正苦於以下問題:C# StoreInformationSettings類的具體用法?C# StoreInformationSettings怎麽用?C# StoreInformationSettings使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


StoreInformationSettings類屬於Nop.Core.Domain命名空間,在下文中一共展示了StoreInformationSettings類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: FroogleService

 public FroogleService(IScheduleTaskService scheduleTaskService,
     IGoogleService googleService,
     IProductService productService,
     ICategoryService categoryService,
     IManufacturerService manufacturerService,
     IPictureService pictureService,
     ICurrencyService currencyService,
     IWebHelper webHelper,
     ISettingService settingService,
     IWorkContext workContext,
     IMeasureService measureService,
     MeasureSettings measureSettings,
     StoreInformationSettings storeInformationSettings,
     FroogleSettings froogleSettings,
     CurrencySettings currencySettings,
     GoogleProductObjectContext objectContext)
 {
     this._scheduleTaskService = scheduleTaskService;
     this._googleService = googleService;
     this._productService = productService;
     this._categoryService = categoryService;
     this._manufacturerService = manufacturerService;
     this._pictureService = pictureService;
     this._currencyService = currencyService;
     this._webHelper = webHelper;
     this._settingService = settingService;
     this._workContext = workContext;
     this._measureService = measureService;
     this._measureSettings = measureSettings;
     this._storeInformationSettings = storeInformationSettings;
     this._froogleSettings = froogleSettings;
     this._currencySettings = currencySettings;
     this._objectContext = objectContext;
 }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:34,代碼來源:FroogleService.cs

示例2: MessageTokenProvider

        public MessageTokenProvider(ILanguageService languageService,
            ILocalizationService localizationService, IDateTimeHelper dateTimeHelper,
            IEmailAccountService emailAccountService,
            IPriceFormatter priceFormatter, ICurrencyService currencyService,IWebHelper webHelper,
            IWorkContext workContext, IDownloadService downloadService,
            IOrderService orderService,
            StoreInformationSettings storeSettings, MessageTemplatesSettings templatesSettings,
            EmailAccountSettings emailAccountSettings, CatalogSettings catalogSettings,
            TaxSettings taxSettings)
        {
            this._languageService = languageService;
            this._localizationService = localizationService;
            this._dateTimeHelper = dateTimeHelper;
            this._emailAccountService = emailAccountService;
            this._priceFormatter = priceFormatter;
            this._currencyService = currencyService;
            this._webHelper = webHelper;
            this._workContext = workContext;
            this._downloadService = downloadService;
            this._orderService = orderService;

            this._storeSettings = storeSettings;
            this._templatesSettings = templatesSettings;
            this._emailAccountSettings = emailAccountSettings;
            this._catalogSettings = catalogSettings;
            this._taxSettings = taxSettings;
        }
開發者ID:alexgonchar,項目名稱:WebArsenal,代碼行數:27,代碼來源:MessageTokenProvider.cs

示例3: PdfService

 public PdfService(ILocalizationService localizationService, IOrderService orderService,
     IPaymentService paymentService,
     IDateTimeHelper dateTimeHelper, IPriceFormatter priceFormatter,
     ICurrencyService currencyService, IMeasureService measureService,
     IPictureService pictureService, IProductService productService, 
     IProductAttributeParser productAttributeParser, IWebHelper webHelper, 
     CatalogSettings catalogSettings, CurrencySettings currencySettings,
     MeasureSettings measureSettings, PdfSettings pdfSettings, TaxSettings taxSettings,
     StoreInformationSettings storeInformationSettings, AddressSettings addressSettings)
 {
     this._localizationService = localizationService;
     this._orderService = orderService;
     this._paymentService = paymentService;
     this._dateTimeHelper = dateTimeHelper;
     this._priceFormatter = priceFormatter;
     this._currencyService = currencyService;
     this._measureService = measureService;
     this._pictureService = pictureService;
     this._productService = productService;
     this._productAttributeParser = productAttributeParser;
     this._webHelper = webHelper;
     this._currencySettings = currencySettings;
     this._catalogSettings = catalogSettings;
     this._measureSettings = measureSettings;
     this._pdfSettings = pdfSettings;
     this._taxSettings = taxSettings;
     this._storeInformationSettings = storeInformationSettings;
     this._addressSettings = addressSettings;
 }
開發者ID:priceLiu,項目名稱:MulitNop,代碼行數:29,代碼來源:PdfService.cs

示例4: BlogController

        public BlogController(IBlogService blogService, 
            IWorkContext workContext, IPictureService pictureService, ILocalizationService localizationService,
            ICustomerContentService customerContentService, IDateTimeHelper dateTimeHelper,
            IWorkflowMessageService workflowMessageService, IWebHelper webHelper,
            ICacheManager cacheManager, ICustomerActivityService customerActivityService,
            MediaSettings mediaSettings, BlogSettings blogSettings,
            LocalizationSettings localizationSettings, CustomerSettings customerSettings,
            StoreInformationSettings storeInformationSettings, CaptchaSettings captchaSettings)
        {
            this._blogService = blogService;
            this._workContext = workContext;
            this._pictureService = pictureService;
            this._localizationService = localizationService;
            this._customerContentService = customerContentService;
            this._dateTimeHelper = dateTimeHelper;
            this._workflowMessageService = workflowMessageService;
            this._webHelper = webHelper;
            this._cacheManager = cacheManager;
            this._customerActivityService = customerActivityService;

            this._mediaSettings = mediaSettings;
            this._blogSettings = blogSettings;
            this._localizationSettings = localizationSettings;
            this._customerSettings = customerSettings;
            this._storeInformationSettings = storeInformationSettings;
            this._captchaSettings = captchaSettings;
        }
開發者ID:priceLiu,項目名稱:MulitNop,代碼行數:27,代碼來源:BlogController.cs

示例5: HomeController

 public HomeController(StoreInformationSettings storeInformationSettings,
     CommonSettings commonSettings, ISettingService settingService)
 {
     this._storeInformationSettings = storeInformationSettings;
     this._commonSettings = commonSettings;
     this._settingService = settingService;
 }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:7,代碼來源:HomeController.cs

示例6: CommonController

 public CommonController(IPaymentService paymentService, IShippingService shippingService,
     IShoppingCartService shoppingCartService,
     ICurrencyService currencyService, IMeasureService measureService,
     ICustomerService customerService, IWebHelper webHelper,
     StoreInformationSettings storeInformationSettings, CurrencySettings currencySettings,
     MeasureSettings measureSettings, IDateTimeHelper dateTimeHelper,
     ILanguageService languageService, IWorkContext workContext,
     IPermissionService permissionService, ILocalizationService localizationService)
 {
     this._paymentService = paymentService;
     this._shippingService = shippingService;
     this._shoppingCartService = shoppingCartService;
     this._currencyService = currencyService;
     this._measureService = measureService;
     this._customerService = customerService;
     this._webHelper = webHelper;
     this._storeInformationSettings = storeInformationSettings;
     this._currencySettings = currencySettings;
     this._measureSettings = measureSettings;
     this._dateTimeHelper = dateTimeHelper;
     this._languageService = languageService;
     this._workContext = workContext;
     this._permissionService = permissionService;
     this._localizationService = localizationService;
 }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:25,代碼來源:CommonController.cs

示例7: MobileDeviceHelper

 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="storeInformationSettings">Store information settings</param>
 /// <param name="workContext">Work context</param>
 /// <param name="storeContext">Store context</param>
 public MobileDeviceHelper(StoreInformationSettings storeInformationSettings,
     IWorkContext workContext, IStoreContext storeContext)
 {
     this._storeInformationSettings = storeInformationSettings;
     this._workContext = workContext;
     this._storeContext = storeContext;
 }
開發者ID:haithemChkel,項目名稱:nopCommerce_33,代碼行數:13,代碼來源:MobileDeviceHelper.cs

示例8: ThemeContext

 public ThemeContext(IWorkContext workContext, IGenericAttributeService genericAttributeService,
     StoreInformationSettings storeInformationSettings, IThemeProvider themeProvider)
 {
     this._workContext = workContext;
     this._genericAttributeService = genericAttributeService;
     this._storeInformationSettings = storeInformationSettings;
     this._themeProvider = themeProvider;
 }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:8,代碼來源:ThemeContext.cs

示例9: ThemeContext

 public ThemeContext(IWorkContext workContext, ICustomerService customerService,
     StoreInformationSettings storeInformationSettings, IThemeProvider themeProvider)
 {
     this._workContext = workContext;
     this._customerService = customerService;
     this._storeInformationSettings = storeInformationSettings;
     this._themeProvider = themeProvider;
 }
開發者ID:cmcginn,項目名稱:StoreFront,代碼行數:8,代碼來源:ThemeContext.cs

示例10: ChinabankPaymentProcessor

 public ChinabankPaymentProcessor(ChinabankPaymentSettings chinabankPayPaymentSettings,
     StoreInformationSettings storeInformationSettings,
     ISettingService settingService, IWebHelper webHelper)
 {
     this._chinabankPayPaymentSettings = chinabankPayPaymentSettings;
     this._storeInformationSettings = storeInformationSettings;
     this._settingService = settingService;
     this._webHelper = webHelper;
 }
開發者ID:linwinfan,項目名稱:nopcommerce,代碼行數:9,代碼來源:ChinabankPaymentProcessor.cs

示例11: SetUp

        public new void SetUp()
        {
            _categoryService = MockRepository.GenerateMock<ICategoryService>();
            _manufacturerService = MockRepository.GenerateMock<IManufacturerService>();
            _productService = MockRepository.GenerateMock<IProductService>();
            _pictureService = MockRepository.GenerateMock<IPictureService>();
            _newsLetterSubscriptionService = MockRepository.GenerateMock<INewsLetterSubscriptionService>();

            _storeInformationSettings = new StoreInformationSettings();
            _exportManager = new ExportManager(_categoryService,
                _manufacturerService, _productService, _pictureService, _newsLetterSubscriptionService, _storeInformationSettings);
        }
開發者ID:philipengland,項目名稱:albionextrusions.co.uk,代碼行數:12,代碼來源:ExportManagerTests.cs

示例12: AuthorizeNetPaymentProcessor

 public AuthorizeNetPaymentProcessor(AuthorizeNetPaymentSettings authorizeNetPaymentSettings,
     ISettingService settingService, ICurrencyService currencyService,
     CurrencySettings currencySettings, IWebHelper webHelper,
     StoreInformationSettings storeInformationSettings)
 {
     this._authorizeNetPaymentSettings = authorizeNetPaymentSettings;
     this._settingService = settingService;
     this._currencyService = currencyService;
     this._currencySettings = currencySettings;
     this._webHelper = webHelper;
     this._storeInformationSettings = storeInformationSettings;
 }
開發者ID:cmcginn,項目名稱:StoreFront,代碼行數:12,代碼來源:AuthorizeNetPaymentProcessor.cs

示例13: WidgetsGoogleAnalyticsController

 public WidgetsGoogleAnalyticsController(IWorkContext workContext, ISettingService settingService,
     IOrderService orderService, ILogger logger,
     ICategoryService categoryService,
     GoogleAnalyticsSettings trackingScriptsSettings, StoreInformationSettings storeInformationSettings)
 {
     this._workContext = workContext;
     this._settingService = settingService;
     this._orderService = orderService;
     this._logger = logger;
     this._categoryService = categoryService;
     this._googleAnalyticsSettings = trackingScriptsSettings;
     this._storeInformationSettings = storeInformationSettings;
 }
開發者ID:btolbert,項目名稱:test-commerce,代碼行數:13,代碼來源:WidgetsGoogleAnalyticsController.cs

示例14: StripePaymentProcessor

 public StripePaymentProcessor(StripePaymentSettings stripePaymentSettings,
     ISettingService settingService, ICurrencyService currencyService,
     ICustomerService customerService,
     CurrencySettings currencySettings, IWebHelper webHelper,
     StoreInformationSettings storeInformationSettings)
 {
     this._stripePaymentSettings = stripePaymentSettings;
     this._settingService = settingService;
     this._currencyService = currencyService;
     this._customerService = customerService;
     this._currencySettings = currencySettings;
     this._webHelper = webHelper;
     this._storeInformationSettings = storeInformationSettings;
 }
開發者ID:vivian-ho,項目名稱:nopstripe,代碼行數:14,代碼來源:StripePaymentProcessor.cs

示例15: ExportManager

 public ExportManager(ICategoryService categoryService,
     IManufacturerService manufacturerService,
     IProductService productService,
     IPictureService pictureService,
     INewsLetterSubscriptionService newsLetterSubscriptionService,
     StoreInformationSettings storeInformationSettings)
 {
     this._categoryService = categoryService;
     this._manufacturerService = manufacturerService;
     this._productService = productService;
     this._pictureService = pictureService;
     this._newsLetterSubscriptionService = newsLetterSubscriptionService;
     this._storeInformationSettings = storeInformationSettings;
 }
開發者ID:nopmcs,項目名稱:mycreativestudio,代碼行數:14,代碼來源:ExportManager.cs


注:本文中的Nop.Core.Domain.StoreInformationSettings類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。