本文整理匯總了C#中Nop.Core.Domain.Blogs.BlogSettings類的典型用法代碼示例。如果您正苦於以下問題:C# BlogSettings類的具體用法?C# BlogSettings怎麽用?C# BlogSettings使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
BlogSettings類屬於Nop.Core.Domain.Blogs命名空間,在下文中一共展示了BlogSettings類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: 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;
}
示例2: CommonController
public CommonController(ICategoryService categoryService, IProductService productService,
IManufacturerService manufacturerService, ITopicService topicService,
ILanguageService languageService,
ICurrencyService currencyService, ILocalizationService localizationService,
IWorkContext workContext,
IQueuedEmailService queuedEmailService, IEmailAccountService emailAccountService,
ISitemapGenerator sitemapGenerator, IThemeContext themeContext,
IThemeProvider themeProvider, IForumService forumService,
ICustomerService customerService, IWebHelper webHelper,
IPermissionService permissionService, CustomerSettings customerSettings,
TaxSettings taxSettings, CatalogSettings catalogSettings,
StoreInformationSettings storeInformationSettings, EmailAccountSettings emailAccountSettings,
CommonSettings commonSettings, BlogSettings blogSettings, ForumSettings forumSettings,
LocalizationSettings localizationSettings)
{
this._categoryService = categoryService;
this._productService = productService;
this._manufacturerService = manufacturerService;
this._topicService = topicService;
this._languageService = languageService;
this._currencyService = currencyService;
this._localizationService = localizationService;
this._workContext = workContext;
this._queuedEmailService = queuedEmailService;
this._emailAccountService = emailAccountService;
this._sitemapGenerator = sitemapGenerator;
this._themeContext = themeContext;
this._themeProvider = themeProvider;
this._forumservice = forumService;
this._customerService = customerService;
this._webHelper = webHelper;
this._permissionService = permissionService;
this._customerSettings = customerSettings;
this._taxSettings = taxSettings;
this._catalogSettings = catalogSettings;
this._storeInformationSettings = storeInformationSettings;
this._emailAccountSettings = emailAccountSettings;
this._commonSettings = commonSettings;
this._blogSettings = blogSettings;
this._forumSettings = forumSettings;
this._localizationSettings = localizationSettings;
}
示例3: SitemapGenerator
public SitemapGenerator(IStoreContext storeContext,
ICategoryService categoryService,
IProductService productService,
IManufacturerService manufacturerService,
ITopicService topicService,
CommonSettings commonSettings,
BlogSettings blogSettings,
NewsSettings newsSettings,
ForumSettings forumSettings)
{
this._storeContext = storeContext;
this._categoryService = categoryService;
this._productService = productService;
this._manufacturerService = manufacturerService;
this._topicService = topicService;
this._commonSettings = commonSettings;
this._blogSettings = blogSettings;
this._newsSettings = newsSettings;
this._forumSettings = forumSettings;
}
示例4: SettingController
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;
}
示例5: Blog
public ActionResult Blog(BlogSettingsModel model)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageSettings))
return AccessDeniedView();
_blogSettings = model.ToEntity(_blogSettings);
_settingService.SaveSetting(_blogSettings);
//activity log
_customerActivityService.InsertActivity("EditSettings", _localizationService.GetResource("ActivityLog.EditSettings"));
SuccessNotification(_localizationService.GetResource("Admin.Configuration.Updated"));
return RedirectToAction("Blog");
}
示例6: ToEntity
public static BlogSettings ToEntity(this BlogSettingsModel model, BlogSettings destination)
{
return Mapper.Map(model, destination);
}
示例7: CatalogController
public CatalogController(ICategoryService categoryService,
IManufacturerService manufacturerService,
IProductService productService,
IVendorService vendorService,
ICategoryTemplateService categoryTemplateService,
IManufacturerTemplateService manufacturerTemplateService,
IWorkContext workContext,
IStoreContext storeContext,
ITaxService taxService,
ICurrencyService currencyService,
IPictureService pictureService,
ILocalizationService localizationService,
IPriceCalculationService priceCalculationService,
IPriceFormatter priceFormatter,
IWebHelper webHelper,
ISpecificationAttributeService specificationAttributeService,
IProductTagService productTagService,
IGenericAttributeService genericAttributeService,
IAclService aclService,
IStoreMappingService storeMappingService,
IPermissionService permissionService,
ICustomerActivityService customerActivityService,
ITopicService topicService,
IEventPublisher eventPublisher,
ISearchTermService searchTermService,
MediaSettings mediaSettings,
CatalogSettings catalogSettings,
VendorSettings vendorSettings,
BlogSettings blogSettings,
ForumSettings forumSettings,
ICacheManager cacheManager)
{
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._productService = productService;
this._vendorService = vendorService;
this._categoryTemplateService = categoryTemplateService;
this._manufacturerTemplateService = manufacturerTemplateService;
this._workContext = workContext;
this._storeContext = storeContext;
this._taxService = taxService;
this._currencyService = currencyService;
this._pictureService = pictureService;
this._localizationService = localizationService;
this._priceCalculationService = priceCalculationService;
this._priceFormatter = priceFormatter;
this._webHelper = webHelper;
this._specificationAttributeService = specificationAttributeService;
this._productTagService = productTagService;
this._genericAttributeService = genericAttributeService;
this._aclService = aclService;
this._storeMappingService = storeMappingService;
this._permissionService = permissionService;
this._customerActivityService = customerActivityService;
this._topicService = topicService;
this._eventPublisher = eventPublisher;
this._searchTermService = searchTermService;
this._mediaSettings = mediaSettings;
this._catalogSettings = catalogSettings;
this._vendorSettings = vendorSettings;
this._blogSettings = blogSettings;
this._forumSettings = forumSettings;
this._cacheManager = cacheManager;
}
示例8: CommonController
public CommonController(ICategoryService categoryService, IProductService productService,
IManufacturerService manufacturerService, ITopicService topicService,
ILanguageService languageService,
ICurrencyService currencyService, ILocalizationService localizationService,
IWorkContext workContext, IStoreContext storeContext,
IQueuedEmailService queuedEmailService, IEmailAccountService emailAccountService,
ISitemapGenerator sitemapGenerator, IThemeContext themeContext,
IThemeProvider themeProvider, IForumService forumService,
IGenericAttributeService genericAttributeService, IWebHelper webHelper,
IPermissionService permissionService, IMobileDeviceHelper mobileDeviceHelper,
HttpContextBase httpContext, ICacheManager cacheManager,
ICustomerActivityService customerActivityService, CustomerSettings customerSettings,
TaxSettings taxSettings, CatalogSettings catalogSettings,
StoreInformationSettings storeInformationSettings, EmailAccountSettings emailAccountSettings,
CommonSettings commonSettings, BlogSettings blogSettings,
NewsSettings newsSettings, ForumSettings forumSettings,
LocalizationSettings localizationSettings, CaptchaSettings captchaSettings)
{
this._categoryService = categoryService;
this._productService = productService;
this._manufacturerService = manufacturerService;
this._topicService = topicService;
this._languageService = languageService;
this._currencyService = currencyService;
this._localizationService = localizationService;
this._workContext = workContext;
this._storeContext = storeContext;
this._queuedEmailService = queuedEmailService;
this._emailAccountService = emailAccountService;
this._sitemapGenerator = sitemapGenerator;
this._themeContext = themeContext;
this._themeProvider = themeProvider;
this._forumservice = forumService;
this._genericAttributeService = genericAttributeService;
this._webHelper = webHelper;
this._permissionService = permissionService;
this._mobileDeviceHelper = mobileDeviceHelper;
this._httpContext = httpContext;
this._cacheManager = cacheManager;
this._customerActivityService = customerActivityService;
this._customerSettings = customerSettings;
this._taxSettings = taxSettings;
this._catalogSettings = catalogSettings;
this._storeInformationSettings = storeInformationSettings;
this._emailAccountSettings = emailAccountSettings;
this._commonSettings = commonSettings;
this._blogSettings = blogSettings;
this._newsSettings = newsSettings;
this._forumSettings = forumSettings;
this._localizationSettings = localizationSettings;
this._captchaSettings = captchaSettings;
}
示例9: CatalogController
public CatalogController(ICategoryService categoryService,
IManufacturerService manufacturerService,
IProductService productService,
IVendorService vendorService,
IProductTemplateService productTemplateService,
ICategoryTemplateService categoryTemplateService,
IManufacturerTemplateService manufacturerTemplateService,
IProductAttributeService productAttributeService,
IWorkContext workContext,
IStoreContext storeContext,
ITaxService taxService,
ICurrencyService currencyService,
IPictureService pictureService,
ILocalizationService localizationService,
IPriceCalculationService priceCalculationService,
IPriceFormatter priceFormatter,
IWebHelper webHelper,
ISpecificationAttributeService specificationAttributeService,
IDateTimeHelper dateTimeHelper,
IRecentlyViewedProductsService recentlyViewedProductsService,
ICompareProductsService compareProductsService,
IWorkflowMessageService workflowMessageService,
IProductTagService productTagService,
IOrderReportService orderReportService,
IGenericAttributeService genericAttributeService,
IBackInStockSubscriptionService backInStockSubscriptionService,
IAclService aclService,
IStoreMappingService storeMappingService,
IPermissionService permissionService,
ICustomerActivityService customerActivityService,
IEventPublisher eventPublisher,
ISearchTermService searchTermService,
IProductAttributeParser productAttributeParser,
IShippingService shippingService,
MediaSettings mediaSettings,
CatalogSettings catalogSettings,
VendorSettings vendorSettings,
ShoppingCartSettings shoppingCartSettings,
BlogSettings blogSettings,
ForumSettings forumSettings,
LocalizationSettings localizationSettings,
CustomerSettings customerSettings,
CaptchaSettings captchaSettings,
ICacheManager cacheManager)
{
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._productService = productService;
this._vendorService = vendorService;
this._productTemplateService = productTemplateService;
this._categoryTemplateService = categoryTemplateService;
this._manufacturerTemplateService = manufacturerTemplateService;
this._productAttributeService = productAttributeService;
this._workContext = workContext;
this._storeContext = storeContext;
this._taxService = taxService;
this._currencyService = currencyService;
this._pictureService = pictureService;
this._localizationService = localizationService;
this._priceCalculationService = priceCalculationService;
this._priceFormatter = priceFormatter;
this._webHelper = webHelper;
this._specificationAttributeService = specificationAttributeService;
this._dateTimeHelper = dateTimeHelper;
this._recentlyViewedProductsService = recentlyViewedProductsService;
this._compareProductsService = compareProductsService;
this._workflowMessageService = workflowMessageService;
this._productTagService = productTagService;
this._orderReportService = orderReportService;
this._genericAttributeService = genericAttributeService;
this._backInStockSubscriptionService = backInStockSubscriptionService;
this._aclService = aclService;
this._storeMappingService = storeMappingService;
this._permissionService = permissionService;
this._customerActivityService = customerActivityService;
this._eventPublisher = eventPublisher;
this._searchTermService = searchTermService;
this._productAttributeParser = productAttributeParser;
this._shippingService = shippingService;
this._mediaSettings = mediaSettings;
this._catalogSettings = catalogSettings;
this._vendorSettings = vendorSettings;
this._shoppingCartSettings = shoppingCartSettings;
this._blogSettings = blogSettings;
this._forumSettings = forumSettings;
this._localizationSettings = localizationSettings;
this._customerSettings = customerSettings;
this._captchaSettings = captchaSettings;
this._cacheManager = cacheManager;
}
示例10: CatalogController
public CatalogController(ICategoryService categoryService,
IManufacturerService manufacturerService,
IProductService productService,
IVendorService vendorService,
ICategoryTemplateService categoryTemplateService,
IManufacturerTemplateService manufacturerTemplateService,
IWorkContext workContext,
IStoreContext storeContext,
ITaxService taxService,
ICurrencyService currencyService,
IPictureService pictureService,
ILocalizationService localizationService,
IPriceCalculationService priceCalculationService,
IPriceFormatter priceFormatter,
IWebHelper webHelper,
ISpecificationAttributeService specificationAttributeService,
IProductTagService productTagService,
IGenericAttributeService genericAttributeService,
IAclService aclService,
IStoreMappingService storeMappingService,
IPermissionService permissionService,
ICustomerActivityService customerActivityService,
ITopicService topicService,
IEventPublisher eventPublisher,
ISearchTermService searchTermService,
MediaSettings mediaSettings,
CatalogSettings catalogSettings,
VendorSettings vendorSettings,
BlogSettings blogSettings,
ForumSettings forumSettings,
ICacheManager cacheManager)
: base (categoryService,
manufacturerService,
productService,
vendorService,
categoryTemplateService,
manufacturerTemplateService,
workContext,
storeContext,
taxService,
currencyService,
pictureService,
localizationService,
priceCalculationService,
priceFormatter,
webHelper,
specificationAttributeService,
productTagService,
genericAttributeService,
aclService,
storeMappingService,
permissionService,
customerActivityService,
topicService,
eventPublisher,
searchTermService,
mediaSettings,
catalogSettings,
vendorSettings,
blogSettings,
forumSettings,
cacheManager)
{
}