当前位置: 首页>>代码示例>>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;未经允许,请勿转载。