本文整理匯總了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;
}
示例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;
}
示例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;
}
示例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;
}
示例5: HomeController
public HomeController(StoreInformationSettings storeInformationSettings,
CommonSettings commonSettings, ISettingService settingService)
{
this._storeInformationSettings = storeInformationSettings;
this._commonSettings = commonSettings;
this._settingService = settingService;
}
示例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;
}
示例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;
}
示例8: ThemeContext
public ThemeContext(IWorkContext workContext, IGenericAttributeService genericAttributeService,
StoreInformationSettings storeInformationSettings, IThemeProvider themeProvider)
{
this._workContext = workContext;
this._genericAttributeService = genericAttributeService;
this._storeInformationSettings = storeInformationSettings;
this._themeProvider = themeProvider;
}
示例9: ThemeContext
public ThemeContext(IWorkContext workContext, ICustomerService customerService,
StoreInformationSettings storeInformationSettings, IThemeProvider themeProvider)
{
this._workContext = workContext;
this._customerService = customerService;
this._storeInformationSettings = storeInformationSettings;
this._themeProvider = themeProvider;
}
示例10: ChinabankPaymentProcessor
public ChinabankPaymentProcessor(ChinabankPaymentSettings chinabankPayPaymentSettings,
StoreInformationSettings storeInformationSettings,
ISettingService settingService, IWebHelper webHelper)
{
this._chinabankPayPaymentSettings = chinabankPayPaymentSettings;
this._storeInformationSettings = storeInformationSettings;
this._settingService = settingService;
this._webHelper = webHelper;
}
示例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);
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}