本文整理汇总了C#中Nop.Core.Domain.Common.AdminAreaSettings类的典型用法代码示例。如果您正苦于以下问题:C# AdminAreaSettings类的具体用法?C# AdminAreaSettings怎么用?C# AdminAreaSettings使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AdminAreaSettings类属于Nop.Core.Domain.Common命名空间,在下文中一共展示了AdminAreaSettings类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: mobSocialApiController
public mobSocialApiController(IPermissionService permissionService,
IWorkContext workContext, AdminAreaSettings adminAreaSettings, ILocalizationService localizationService,
IPictureService pictureService, IMobSocialService socialNetworkService, ICustomerService customerService,
ICustomerAlbumPictureService customerAlbumPictureService, mobSocialSettings mobSocialSettings, MediaSettings mediaSettings, CustomerSettings customerSettings,
ForumSettings forumSettings, RewardPointsSettings rewardPointsSettings, OrderSettings orderSettings,
IStoreContext storeContext, IWebHelper webHelper, IUrlRecordService urlRecordService, IRepository<UrlRecord> urlRecordRepository,
ICustomerVideoAlbumService customerVideoAlbumService, CustomerProfileViewService customerProfileViewService)
{
_permissionService = permissionService;
_workContext = workContext;
_adminAreaSettings = adminAreaSettings;
_localizationService = localizationService;
_pictureService = pictureService;
_socialNetworkService = socialNetworkService;
_customerService = customerService;
_customerAlbumPictureService = customerAlbumPictureService;
_mobSocialSettings = mobSocialSettings;
_mediaSettings = mediaSettings;
_customerSettings = customerSettings;
_forumSettings = forumSettings;
_rewardPointsSettings = rewardPointsSettings;
_orderSettings = orderSettings;
_storeContext = storeContext;
_webHelper = webHelper;
_urlRecordService = urlRecordService;
_urlRecordRepository = urlRecordRepository;
_customerVideoAlbumService = customerVideoAlbumService;
_customerProfileViewService = customerProfileViewService;
}
示例2: ManufacturerController
public ManufacturerController(ICategoryService categoryService, IManufacturerService manufacturerService,
IManufacturerTemplateService manufacturerTemplateService, IProductService productService,
ICustomerService customerService, IStoreService storeService,
IStoreMappingService storeMappingService,
IUrlRecordService urlRecordService, IPictureService pictureService,
ILanguageService languageService, ILocalizationService localizationService,
ILocalizedEntityService localizedEntityService, IExportManager exportManager,
ICustomerActivityService customerActivityService, IAclService aclService,
IPermissionService permissionService,
AdminAreaSettings adminAreaSettings, CatalogSettings catalogSettings)
{
this._categoryService = categoryService;
this._manufacturerTemplateService = manufacturerTemplateService;
this._manufacturerService = manufacturerService;
this._productService = productService;
this._customerService = customerService;
this._storeService = storeService;
this._storeMappingService = storeMappingService;
this._urlRecordService = urlRecordService;
this._pictureService = pictureService;
this._languageService = languageService;
this._localizationService = localizationService;
this._localizedEntityService = localizedEntityService;
this._exportManager = exportManager;
this._customerActivityService = customerActivityService;
this._aclService = aclService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
this._catalogSettings = catalogSettings;
}
示例3: CategoryController
public CategoryController(ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
IManufacturerService manufacturerService, IProductService productService,
ICustomerService customerService,
IUrlRecordService urlRecordService, IPictureService pictureService, ILanguageService languageService,
ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
IDiscountService discountService, IPermissionService permissionService,
IAclService aclService,
IExportManager exportManager, IWorkContext workContext,
ICustomerActivityService customerActivityService, AdminAreaSettings adminAreaSettings,
CatalogSettings catalogSettings)
{
this._categoryService = categoryService;
this._categoryTemplateService = categoryTemplateService;
this._manufacturerService = manufacturerService;
this._productService = productService;
this._customerService = customerService;
this._urlRecordService = urlRecordService;
this._pictureService = pictureService;
this._languageService = languageService;
this._localizationService = localizationService;
this._localizedEntityService = localizedEntityService;
this._discountService = discountService;
this._permissionService = permissionService;
this._aclService = aclService;
this._exportManager = exportManager;
this._workContext = workContext;
this._customerActivityService = customerActivityService;
this._adminAreaSettings = adminAreaSettings;
this._catalogSettings = catalogSettings;
}
示例4: ProductController
public ProductController(IProductService productService,
IProductTemplateService productTemplateService,
ICategoryService categoryService, IManufacturerService manufacturerService,
IWorkContext workContext, ILanguageService languageService,
ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
ISpecificationAttributeService specificationAttributeService, IPictureService pictureService,
ITaxCategoryService taxCategoryService, IProductTagService productTagService,
ICopyProductService copyProductService, IPdfService pdfService,
IExportManager exportManager, IImportManager importManager,
ICustomerActivityService customerActivityService,
IPermissionService permissionService, AdminAreaSettings adminAreaSettings)
{
this._productService = productService;
this._productTemplateService = productTemplateService;
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._workContext = workContext;
this._languageService = languageService;
this._localizationService = localizationService;
this._localizedEntityService = localizedEntityService;
this._specificationAttributeService = specificationAttributeService;
this._pictureService = pictureService;
this._taxCategoryService = taxCategoryService;
this._productTagService = productTagService;
this._copyProductService = copyProductService;
this._pdfService = pdfService;
this._exportManager = exportManager;
this._importManager = importManager;
this._customerActivityService = customerActivityService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例5: NewsLetterSubscriptionController
public NewsLetterSubscriptionController(INewsLetterSubscriptionService newsLetterSubscriptionService,
IDateTimeHelper dateTimeHelper,ILocalizationService localizationService,
IPermissionService permissionService, AdminAreaSettings adminAreaSettings)
{
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._dateTimeHelper = dateTimeHelper;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例6: LanguageController
public LanguageController(ILanguageService languageService,
ILocalizationService localizationService,
IPermissionService permissionService,
AdminAreaSettings adminAreaSettings)
{
this._localizationService = localizationService;
this._languageService = languageService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例7: PollController
public PollController(IPollService pollService, ILanguageService languageService,
IDateTimeHelper dateTimeHelper, ILocalizationService localizationService,
IPermissionService permissionService, AdminAreaSettings adminAreaSettings)
{
this._pollService = pollService;
this._languageService = languageService;
this._dateTimeHelper = dateTimeHelper;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例8: LanguageController
public LanguageController(ILanguageService languageService, ILocalizationService localizationService,
IExportManager exportManager, IImportManager importManager, IPermissionService permissionService,
AdminAreaSettings adminAreaSettings)
{
this._localizationService = localizationService;
this._languageService = languageService;
this._exportManager = exportManager;
this._importManager = importManager;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例9: OnlineCustomerController
public OnlineCustomerController(ICustomerService customerService,
IGeoCountryLookup geoCountryLookup, IDateTimeHelper dateTimeHelper,
CustomerSettings customerSettings, AdminAreaSettings adminAreaSettings,
IPermissionService permissionService)
{
this._customerService = customerService;
this._geoCountryLookup = geoCountryLookup;
this._dateTimeHelper = dateTimeHelper;
this._customerSettings = customerSettings;
this._adminAreaSettings = adminAreaSettings;
this._permissionService = permissionService;
}
示例10: NewsController
public NewsController(INewsService newsService, ILanguageService languageService,
IDateTimeHelper dateTimeHelper, ICustomerContentService customerContentService,
ILocalizationService localizationService, IPermissionService permissionService,
AdminAreaSettings adminAreaSettings)
{
this._newsService = newsService;
this._languageService = languageService;
this._dateTimeHelper = dateTimeHelper;
this._customerContentService = customerContentService;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
}
示例11: BlogController
public BlogController(IBlogService blogService, ILanguageService languageService,
IDateTimeHelper dateTimeHelper, ICustomerContentService customerContentService,
ILocalizationService localizationService, IPermissionService permissionService,
IUrlRecordService urlRecordService, AdminAreaSettings adminAreaSettings)
{
this._blogService = blogService;
this._languageService = languageService;
this._dateTimeHelper = dateTimeHelper;
this._customerContentService = customerContentService;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._urlRecordService = urlRecordService;
this._adminAreaSettings = adminAreaSettings;
}
示例12: LanguageController
public LanguageController(ILanguageService languageService,
ILocalizationService localizationService,
IStoreService storeService,
IStoreMappingService storeMappingService,
IPermissionService permissionService,
IWebHelper webHelper,
AdminAreaSettings adminAreaSettings)
{
this._localizationService = localizationService;
this._languageService = languageService;
this._storeService = storeService;
this._storeMappingService = storeMappingService;
this._permissionService = permissionService;
this._webHelper= webHelper;
this._adminAreaSettings = adminAreaSettings;
}
示例13: HomeController
public HomeController(IStoreContext storeContext,
AdminAreaSettings adminAreaSettings,
ISettingService settingService,
IPermissionService permissionService,
IProductService productService,
IOrderService orderService,
ICustomerService customerService,
IReturnRequestService returnRequestService,
IWorkContext workContext,
ICacheManager cacheManager)
{
this._storeContext = storeContext;
this._adminAreaSettings = adminAreaSettings;
this._settingService = settingService;
this._permissionService = permissionService;
this._productService = productService;
this._orderService = orderService;
this._customerService = customerService;
this._returnRequestService = returnRequestService;
this._workContext = workContext;
this._cacheManager = cacheManager;
}
示例14: VendorController
public VendorController(ICategoryService categoryService, IVendorService vendorService,
IVendorTemplateService vendorTemplateService, IProductService productService,
IUrlRecordService urlRecordService, IPictureService pictureService,
ILanguageService languageService, ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
IExportManager exportManager, IWorkContext workContext,
ICustomerActivityService customerActivityService, IAclService aclService, IPermissionService permissionService,
AdminAreaSettings adminAreaSettings, CatalogSettings catalogSettings,
ICustomerService customerService, CustomerSettings customerSettings
, IBranchService branchService
, ICountryService countryService, IStateProvinceService stateProvinceService)
{
this._categoryService = categoryService;
this._vendorTemplateService = vendorTemplateService;
this._vendorService = vendorService;
this._productService = productService;
this._urlRecordService = urlRecordService;
this._pictureService = pictureService;
this._languageService = languageService;
this._localizationService = localizationService;
this._localizedEntityService = localizedEntityService;
this._exportManager = exportManager;
this._workContext = workContext;
this._customerActivityService = customerActivityService;
this._aclService = aclService;
this._permissionService = permissionService;
this._adminAreaSettings = adminAreaSettings;
this._catalogSettings = catalogSettings;
this._customerService = customerService;
this._customerSettings = customerSettings;
this._branchService = branchService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
customerVendorId = _vendorService.GetVendorIdByCustomerId(_workContext.CurrentCustomer.Id);//add by hz
}
示例15: GroupDealsController
public GroupDealsController(
IProductService productService,
IProductTemplateService productTemplateService,
ICategoryService categoryService,
IManufacturerService manufacturerService,
ICustomerService customerService,
IUrlRecordService urlRecordService,
IWorkContext workContext,
ILanguageService languageService,
ILocalizationService localizationService,
ILocalizedEntityService localizedEntityService,
ISpecificationAttributeService specificationAttributeService,
IPictureService pictureService,
ITaxCategoryService taxCategoryService,
IProductTagService productTagService,
ICopyProductService copyProductService,
IPdfService pdfService,
IExportManager exportManager,
IImportManager importManager,
ICustomerActivityService customerActivityService,
IPermissionService permissionService,
IAclService aclService,
IStoreService storeService,
IOrderService orderService,
IStoreMappingService storeMappingService,
IVendorService vendorService,
IShippingService shippingService,
IShipmentService shipmentService,
ICurrencyService currencyService,
CurrencySettings currencySettings,
IMeasureService measureService,
MeasureSettings measureSettings,
AdminAreaSettings adminAreaSettings,
IDateTimeHelper dateTimeHelper,
IDiscountService discountService,
IProductAttributeService productAttributeService,
IBackInStockSubscriptionService backInStockSubscriptionService,
IShoppingCartService shoppingCartService,
IProductAttributeFormatter productAttributeFormatter,
IProductAttributeParser productAttributeParser,
IDownloadService downloadService,
IRepository<GroupDeal> groupDealRepo,
IRepository<GroupdealPicture> groupdealPictureRepo,
IGroupDealService groupdealService,
IGenericAttributeService genericAttributeService)
: base(productService,
productTemplateService,
categoryService,
manufacturerService,
customerService,
urlRecordService,
workContext,
languageService,
localizationService,
localizedEntityService,
specificationAttributeService,
pictureService,
taxCategoryService,
productTagService,
copyProductService,
pdfService,
exportManager,
importManager,
customerActivityService,
permissionService,
aclService,
storeService,
orderService,
storeMappingService,
vendorService,
shippingService,
shipmentService,
currencyService,
currencySettings,
measureService,
measureSettings,
adminAreaSettings,
dateTimeHelper,
discountService,
productAttributeService,
backInStockSubscriptionService,
shoppingCartService,
productAttributeFormatter,
productAttributeParser,
downloadService,
groupDealRepo,
groupdealPictureRepo,
groupdealService,
genericAttributeService)
{ }