本文整理汇总了C#中ITaxCategoryService类的典型用法代码示例。如果您正苦于以下问题:C# ITaxCategoryService类的具体用法?C# ITaxCategoryService怎么用?C# ITaxCategoryService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ITaxCategoryService类属于命名空间,在下文中一共展示了ITaxCategoryService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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,
IMaintenanceService maintenanceService, IStoreService storeService,
IWorkContext workContext, IGenericAttributeService genericAttributeService)
{
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._maintenanceService = maintenanceService;
this._storeService = storeService;
this._workContext = workContext;
this._genericAttributeService = genericAttributeService;
}
示例2: 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;
}
示例3: CheckoutAttributeController
public CheckoutAttributeController(ICheckoutAttributeService checkoutAttributeService,
ILanguageService languageService,
ILocalizedEntityService localizedEntityService,
ILocalizationService localizationService,
ITaxCategoryService taxCategoryService,
IWorkContext workContext,
ICurrencyService currencyService,
ICustomerActivityService customerActivityService,
CurrencySettings currencySettings,
IMeasureService measureService,
MeasureSettings measureSettings,
IPermissionService permissionService,
IStoreService storeService,
IStoreMappingService storeMappingService)
{
this._checkoutAttributeService = checkoutAttributeService;
this._languageService = languageService;
this._localizedEntityService = localizedEntityService;
this._localizationService = localizationService;
this._taxCategoryService = taxCategoryService;
this._workContext = workContext;
this._currencyService = currencyService;
this._customerActivityService = customerActivityService;
this._currencySettings = currencySettings;
this._measureService = measureService;
this._measureSettings = measureSettings;
this._permissionService = permissionService;
this._storeService = storeService;
this._storeMappingService = storeMappingService;
}
示例4: TaxFixedRateController
public TaxFixedRateController(ITaxCategoryService taxCategoryService,
ISettingService settingService,
IPermissionService permissionService)
{
this._taxCategoryService = taxCategoryService;
this._settingService = settingService;
this._permissionService = permissionService;
}
示例5: TaxCountryStateZipController
public TaxCountryStateZipController(ITaxCategoryService taxCategoryService,
ICountryService countryService, IStateProvinceService stateProvinceService,
ITaxRateService taxRateService)
{
this._taxCategoryService = taxCategoryService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._taxRateService = taxRateService;
}
示例6: SelectSellController
public SelectSellController(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,
IStoreContext storeContext,
IRepository<StoreMapping> storeMapping)
{
_workContext = workContext;
_productService = productService;
_pictureService = pictureService;
_localizationService = localizationService;
_categoryService = categoryService;
_manufacturerService = manufacturerService;
_storeService = storeService;
_shippingService = shippingService;
_vendorService = vendorService;
_storeMappingService = storeMappingService;
_storeContext = storeContext;
_storeMapping = storeMapping;
}
示例7: TaxController
public TaxController(ITaxService taxService,
ITaxCategoryService taxCategoryService, TaxSettings taxSettings,
ISettingService settingService, IPermissionService permissionService)
{
this._taxService = taxService;
this._taxCategoryService = taxCategoryService;
this._taxSettings = taxSettings;
this._settingService = settingService;
this._permissionService = permissionService;
}
示例8: ProductController
public ProductController(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, IStoreMappingService storeMappingService,
IVendorService vendorService,
ICurrencyService currencyService, CurrencySettings currencySettings,
IMeasureService measureService, MeasureSettings measureSettings,
PdfSettings pdfSettings, AdminAreaSettings adminAreaSettings)
{
this._productService = productService;
this._productTemplateService = productTemplateService;
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._customerService = customerService;
this._urlRecordService = urlRecordService;
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._aclService = aclService;
this._storeService = storeService;
this._storeMappingService = storeMappingService;
this._vendorService = vendorService;
this._currencyService = currencyService;
this._currencySettings = currencySettings;
this._measureService = measureService;
this._measureSettings = measureSettings;
this._pdfSettings = pdfSettings;
this._adminAreaSettings = adminAreaSettings;
}
示例9: TaxController
public TaxController(
ITaxService taxService,
ITaxCategoryService taxCategoryService,
TaxSettings taxSettings,
ISettingService settingService,
IPermissionService permissionService,
ILocalizationService localizationService,
PluginMediator pluginMediator)
{
this._taxService = taxService;
this._taxCategoryService = taxCategoryService;
this._taxSettings = taxSettings;
this._settingService = settingService;
this._permissionService = permissionService;
this._localizationService = localizationService;
this._pluginMediator = pluginMediator;
}
示例10: CheckoutAttributeController
public CheckoutAttributeController(ICheckoutAttributeService checkoutAttributeService,
ILanguageService languageService,
ILocalizedEntityService localizedEntityService,
ITaxCategoryService taxCategoryService,
ICustomerActivityService customerActivityService,
IMeasureService measureService,
MeasureSettings measureSettings,
ICommonServices services)
{
this._checkoutAttributeService = checkoutAttributeService;
this._languageService = languageService;
this._localizedEntityService = localizedEntityService;
this._taxCategoryService = taxCategoryService;
this._customerActivityService = customerActivityService;
this._measureService = measureService;
this._measureSettings = measureSettings;
this._services = services;
}
示例11: ImportManager
public ImportManager(IProductService productService,
ICategoryService categoryService,
IManufacturerService manufacturerService,
IPictureService pictureService,
IUrlRecordService urlRecordService,
IStoreContext storeContext,
INewsLetterSubscriptionService newsLetterSubscriptionService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
IEncryptionService encryptionService,
IDataProvider dataProvider,
MediaSettings mediaSettings,
IVendorService vendorService,
IProductTemplateService productTemplateService,
IShippingService shippingService,
ITaxCategoryService taxCategoryService,
IMeasureService measureService,
IProductAttributeService productAttributeService,
CatalogSettings catalogSettings)
{
this._productService = productService;
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._pictureService = pictureService;
this._urlRecordService = urlRecordService;
this._storeContext = storeContext;
this._newsLetterSubscriptionService = newsLetterSubscriptionService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._encryptionService = encryptionService;
this._dataProvider = dataProvider;
this._mediaSettings = mediaSettings;
this._vendorService = vendorService;
this._productTemplateService = productTemplateService;
this._shippingService = shippingService;
this._taxCategoryService = taxCategoryService;
this._measureService = measureService;
this._productAttributeService = productAttributeService;
this._catalogSettings = catalogSettings;
}
示例12: SettingController
public SettingController(
ICountryService countryService,
IStateProvinceService stateProvinceService,
IAddressService addressService,
ITaxCategoryService taxCategoryService,
IPictureService pictureService,
IDateTimeHelper dateTimeHelper,
IOrderService orderService,
IEncryptionService encryptionService,
IThemeRegistry themeRegistry,
ICustomerService customerService,
ICustomerActivityService customerActivityService,
IFulltextService fulltextService,
IMaintenanceService maintenanceService,
IGenericAttributeService genericAttributeService,
ILocalizedEntityService localizedEntityService,
ILanguageService languageService,
IDeliveryTimeService deliveryTimesService,
ICommonServices services)
{
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._addressService = addressService;
this._taxCategoryService = taxCategoryService;
this._pictureService = pictureService;
this._dateTimeHelper = dateTimeHelper;
this._orderService = orderService;
this._encryptionService = encryptionService;
this._themeRegistry = themeRegistry;
this._customerService = customerService;
this._customerActivityService = customerActivityService;
this._fulltextService = fulltextService;
this._maintenanceService = maintenanceService;
this._genericAttributeService = genericAttributeService;
this._localizedEntityService = localizedEntityService;
this._languageService = languageService;
this._deliveryTimesService = deliveryTimesService;
this._services = services;
}
示例13: DataFeedTask
public DataFeedTask(
IPluginFinder pluginFinder,
IStoreService storeService,
PromoSettings promoSettings,
IExportQueueService exportQueueService,
IPromoService qixolPromoService,
IPromoUtilities qixolPromoUtilities,
IAttributeValueService attributeValueService,
IShippingService shippingService,
ICustomerService customerService,
IProductAttributeConfigService productAttributeConfigService,
IProductMappingService productMappingService,
IProductService productService,
IProductAttributeParser productAttributeParser,
IVendorService vendorService,
ITaxCategoryService taxCategoryService,
ICheckoutAttributeService checkoutAttributeService,
ICurrencyService currencyService)
{
this._pluginFinder = pluginFinder;
this._storeService = storeService;
this._promoSettings = promoSettings;
this._exportQueueService = exportQueueService;
this._qixolPromoService = qixolPromoService;
this._qixolPromoUtilities = qixolPromoUtilities;
this._attributeValueService = attributeValueService;
this._shippingService = shippingService;
this._customerService = customerService;
this._productAttributeConfigService = productAttributeConfigService;
this._productMappingService = productMappingService;
this._productService = productService;
this._productAttributeParser = productAttributeParser;
this._vendorService = vendorService;
this._taxCategoryService = taxCategoryService;
this._checkoutAttributeService = checkoutAttributeService;
this._currencyService = currencyService;
}
示例14: SetUp
public new void SetUp()
{
_storeService = MockRepository.GenerateMock<IStoreService>();
_categoryService = MockRepository.GenerateMock<ICategoryService>();
_manufacturerService = MockRepository.GenerateMock<IManufacturerService>();
_productAttributeService = MockRepository.GenerateMock<IProductAttributeService>();
_pictureService = MockRepository.GenerateMock<IPictureService>();
_newsLetterSubscriptionService = MockRepository.GenerateMock<INewsLetterSubscriptionService>();
_productEditorSettings = new ProductEditorSettings();
_workContext = MockRepository.GenerateMock<IWorkContext>();
_vendorService = MockRepository.GenerateMock<IVendorService>();
_productTemplateService = MockRepository.GenerateMock<IProductTemplateService>();
_shippingService = MockRepository.GenerateMock<IShippingService>();
_taxCategoryService = MockRepository.GenerateMock<ITaxCategoryService>();
_measureService = MockRepository.GenerateMock<IMeasureService>();
_catalogSettings=new CatalogSettings();
_exportManager = new ExportManager(_categoryService,
_manufacturerService, _productAttributeService,
_pictureService, _newsLetterSubscriptionService,
_storeService, _workContext, _productEditorSettings,
_vendorService, _productTemplateService, _shippingService,
_taxCategoryService, _measureService, _catalogSettings);
}
示例15: ProductController
public ProductController(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)
{
this._productService = productService;
this._productTemplateService = productTemplateService;
this._categoryService = categoryService;
this._manufacturerService = manufacturerService;
this._customerService = customerService;
this._urlRecordService = urlRecordService;
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._aclService = aclService;
this._storeService = storeService;
this._orderService = orderService;
this._storeMappingService = storeMappingService;
this._vendorService = vendorService;
this._shippingService = shippingService;
this._shipmentService = shipmentService;
this._currencyService = currencyService;
this._currencySettings = currencySettings;
this._measureService = measureService;
this._measureSettings = measureSettings;
this._adminAreaSettings = adminAreaSettings;
this._dateTimeHelper = dateTimeHelper;
this._discountService = discountService;
this._productAttributeService = productAttributeService;
this._backInStockSubscriptionService = backInStockSubscriptionService;
this._shoppingCartService = shoppingCartService;
this._productAttributeFormatter = productAttributeFormatter;
this._productAttributeParser = productAttributeParser;
this._downloadService = downloadService;
}