本文整理汇总了C#中IShippingService类的典型用法代码示例。如果您正苦于以下问题:C# IShippingService类的具体用法?C# IShippingService怎么用?C# IShippingService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IShippingService类属于命名空间,在下文中一共展示了IShippingService类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: ShippingByWeightController
public ShippingByWeightController(IShippingService shippingService,
IStoreService storeService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
ShippingByWeightSettings shippingByWeightSettings,
IShippingByWeightService shippingByWeightService,
ISettingService settingService,
ILocalizationService localizationService,
IPermissionService permissionService,
ICurrencyService currencyService,
CurrencySettings currencySettings,
IMeasureService measureService,
MeasureSettings measureSettings)
{
this._shippingService = shippingService;
this._storeService = storeService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._shippingByWeightSettings = shippingByWeightSettings;
this._shippingByWeightService = shippingByWeightService;
this._settingService = settingService;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._currencyService = currencyService;
this._currencySettings = currencySettings;
this._measureService = measureService;
this._measureSettings = measureSettings;
}
开发者ID:RobinHoody,项目名称:nopCommerce,代码行数:28,代码来源:ShippingByWeightController.cs
示例2: ShippingController
public ShippingController(IShippingService shippingService,
ShippingSettings shippingSettings,
ISettingService settingService,
IAddressService addressService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
ILocalizationService localizationService,
IPermissionService permissionService,
ILocalizedEntityService localizedEntityService,
ILanguageService languageService,
IPluginFinder pluginFinder,
IWebHelper webHelper)
{
this._shippingService = shippingService;
this._shippingSettings = shippingSettings;
this._settingService = settingService;
this._addressService = addressService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._localizationService = localizationService;
this._permissionService = permissionService;
this._localizedEntityService = localizedEntityService;
this._languageService = languageService;
this._pluginFinder = pluginFinder;
this._webHelper = webHelper;
}
开发者ID:RickRosser,项目名称:SF011515,代码行数:26,代码来源:ShippingController.cs
示例3: GoogleCheckoutPaymentProcessor
public GoogleCheckoutPaymentProcessor(ISettingService settingService,
IWebHelper webHelper, ITaxService taxService,
IShippingService shippingService,
IOrderTotalCalculationService orderTotalCalculationService,
IProductAttributeFormatter productAttributeFormatter,
IPriceCalculationService priceCalculationService, IWorkContext workContext,
ICustomerService customerService, IGenericAttributeService genericAttributeService,
ICountryService countryService,
IStateProvinceService stateProvinceService, IOrderProcessingService orderProcessingService,
IOrderService orderService, ILogger logger, HttpContextBase httpContext)
{
this._settingService = settingService;
this._webHelper = webHelper;
this._taxService = taxService;
this._shippingService = shippingService;
this._orderTotalCalculationService = orderTotalCalculationService;
this._productAttributeFormatter = productAttributeFormatter;
this._priceCalculationService = priceCalculationService;
this._workContext = workContext;
this._customerService = customerService;
this._genericAttributeService = genericAttributeService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._orderProcessingService = orderProcessingService;
this._orderService = orderService;
this._logger = logger;
this._httpContext = httpContext;
}
开发者ID:nopmcs,项目名称:mycreativestudio,代码行数:28,代码来源:GoogleCheckoutPaymentProcessor.cs
示例4: CheckoutController
/// <summary>
/// CTR
/// </summary>
/// <param name="themes"></param>
public CheckoutController(ICartService carts, ThemeService themes, ITaxService taxes, IShippingService shipping)
{
_CartService = carts;
_ThemeService = themes;
_TaxService = taxes;
_ShippingService = shipping;
}
开发者ID:atitsbest,项目名称:llprk.net,代码行数:11,代码来源:CheckoutController.cs
示例5: FixedRateProvider
public FixedRateProvider(ISettingService settingService,
IShippingService shippingService, ILocalizationService localizationService)
{
this._settingService = settingService;
this._shippingService = shippingService;
_localizationService = localizationService;
}
开发者ID:omidghorbani,项目名称:SmartStoreNET,代码行数:7,代码来源:FixedRateProvider.cs
示例6: OrderTotalCalculationService
/// <summary>
/// Ctor
/// </summary>
/// <param name="workContext">Work context</param>
/// <param name="storeContext">Store context</param>
/// <param name="priceCalculationService">Price calculation service</param>
/// <param name="taxService">Tax service</param>
/// <param name="shippingService">Shipping service</param>
/// <param name="paymentService">Payment service</param>
/// <param name="checkoutAttributeParser">Checkout attribute parser</param>
/// <param name="discountService">Discount service</param>
/// <param name="giftCardService">Gift card service</param>
/// <param name="genericAttributeService">Generic attribute service</param>
/// <param name="taxSettings">Tax settings</param>
/// <param name="rewardPointsSettings">Reward points settings</param>
/// <param name="shippingSettings">Shipping settings</param>
/// <param name="shoppingCartSettings">Shopping cart settings</param>
/// <param name="catalogSettings">Catalog settings</param>
public OrderTotalCalculationService(IWorkContext workContext,
IStoreContext storeContext,
IPriceCalculationService priceCalculationService,
ITaxService taxService,
IShippingService shippingService,
IPaymentService paymentService,
ICheckoutAttributeParser checkoutAttributeParser,
IDiscountService discountService,
IGiftCardService giftCardService,
IGenericAttributeService genericAttributeService,
TaxSettings taxSettings,
RewardPointsSettings rewardPointsSettings,
ShippingSettings shippingSettings,
ShoppingCartSettings shoppingCartSettings,
CatalogSettings catalogSettings)
{
this._workContext = workContext;
this._storeContext = storeContext;
this._priceCalculationService = priceCalculationService;
this._taxService = taxService;
this._shippingService = shippingService;
this._paymentService = paymentService;
this._checkoutAttributeParser = checkoutAttributeParser;
this._discountService = discountService;
this._giftCardService = giftCardService;
this._genericAttributeService = genericAttributeService;
this._taxSettings = taxSettings;
this._rewardPointsSettings = rewardPointsSettings;
this._shippingSettings = shippingSettings;
this._shoppingCartSettings = shoppingCartSettings;
this._catalogSettings = catalogSettings;
}
开发者ID:haithemChkel,项目名称:nopCommerce_33,代码行数:50,代码来源:OrderTotalCalculationService.cs
示例7: ShippingOptionResolver
public ShippingOptionResolver(
IShippingService shippingService,
IWorkContextAccessor workContextAccessor)
{
_shippingService = shippingService;
_workContextAccessor = workContextAccessor;
}
开发者ID:rtpHarry,项目名称:OShop,代码行数:7,代码来源:ShippingOptionResolver.cs
示例8: FixedRateShippingComputationMethod
public FixedRateShippingComputationMethod(ISettingService settingService,
IShippingService shippingService, ILocalizationService localizationService)
{
this._settingService = settingService;
this._shippingService = shippingService;
_localizationService = localizationService;
}
开发者ID:GloriousOnion,项目名称:SmartStoreNET,代码行数:7,代码来源:FixedRateShippingComputationMethod.cs
示例9: OrderController
public OrderController(IOrderService orderService,
IShipmentService shipmentService, IWorkContext workContext,
ICurrencyService currencyService, IPriceFormatter priceFormatter,
IOrderProcessingService orderProcessingService, IDateTimeHelper dateTimeHelper,
IPaymentService paymentService, ILocalizationService localizationService,
IPdfService pdfService, IShippingService shippingService,
ICountryService countryService, IProductAttributeParser productAttributeParser,
IWebHelper webHelper,
CatalogSettings catalogSettings, OrderSettings orderSettings,
TaxSettings taxSettings, PdfSettings pdfSettings,
ShippingSettings shippingSettings, AddressSettings addressSettings)
{
this._orderService = orderService;
this._shipmentService = shipmentService;
this._workContext = workContext;
this._currencyService = currencyService;
this._priceFormatter = priceFormatter;
this._orderProcessingService = orderProcessingService;
this._dateTimeHelper = dateTimeHelper;
this._paymentService = paymentService;
this._localizationService = localizationService;
this._pdfService = pdfService;
this._shippingService = shippingService;
this._countryService = countryService;
this._productAttributeParser = productAttributeParser;
this._webHelper = webHelper;
this._catalogSettings = catalogSettings;
this._orderSettings = orderSettings;
this._taxSettings = taxSettings;
this._pdfSettings = pdfSettings;
this._shippingSettings = shippingSettings;
this._addressSettings = addressSettings;
}
开发者ID:emretiryaki,项目名称:paymill-nopcommerce,代码行数:34,代码来源:OrderController.cs
示例10: OrderController
public OrderController(IOrderService orderService, IShippingService shippingService, IPayPalService payPalService, Fashinon dbContext)
{
this.orderService = orderService;
this.shippingService = shippingService;
this.payPalService = payPalService;
this.dbContext = dbContext;
}
开发者ID:obble80,项目名称:Asiana,代码行数:7,代码来源:OrderController.cs
示例11: CommonController
public CommonController(IPaymentService paymentService,
IShippingService shippingService,
IShoppingCartService shoppingCartService,
ICurrencyService currencyService,
IMeasureService measureService,
ICustomerService customerService,
IUrlRecordService urlRecordService,
IWebHelper webHelper,
CurrencySettings currencySettings,
MeasureSettings measureSettings,
IDateTimeHelper dateTimeHelper,
ILanguageService languageService,
IWorkContext workContext,
IStoreContext storeContext,
IPermissionService permissionService,
ILocalizationService localizationService)
{
this._paymentService = paymentService;
this._shippingService = shippingService;
this._shoppingCartService = shoppingCartService;
this._currencyService = currencyService;
this._measureService = measureService;
this._customerService = customerService;
this._urlRecordService = urlRecordService;
this._webHelper = webHelper;
this._currencySettings = currencySettings;
this._measureSettings = measureSettings;
this._dateTimeHelper = dateTimeHelper;
this._languageService = languageService;
this._workContext = workContext;
this._storeContext = storeContext;
this._permissionService = permissionService;
this._localizationService = localizationService;
}
开发者ID:emretiryaki,项目名称:paymill-nopcommerce,代码行数:34,代码来源:CommonController.cs
示例12: CheckoutController
public CheckoutController(IWorkContext workContext,
IShoppingCartService shoppingCartService, ILocalizationService localizationService,
ITaxService taxService, ICurrencyService currencyService,
IPriceFormatter priceFormatter, IOrderProcessingService orderProcessingService,
ICustomerService customerService, ICountryService countryService,
IStateProvinceService stateProvinceService, IShippingService shippingService,
IPaymentService paymentService, IOrderTotalCalculationService orderTotalCalculationService,
ILogger logger, IOrderService orderService, IWebHelper webHelper,
OrderSettings orderSettings, RewardPointsSettings rewardPointsSettings,
PaymentSettings paymentSettings)
{
this._workContext = workContext;
this._shoppingCartService = shoppingCartService;
this._localizationService = localizationService;
this._taxService = taxService;
this._currencyService = currencyService;
this._priceFormatter = priceFormatter;
this._orderProcessingService = orderProcessingService;
this._customerService = customerService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._shippingService = shippingService;
this._paymentService = paymentService;
this._orderTotalCalculationService = orderTotalCalculationService;
this._logger = logger;
this._orderService = orderService;
this._webHelper = webHelper;
this._orderSettings = orderSettings;
this._rewardPointsSettings = rewardPointsSettings;
this._paymentSettings = paymentSettings;
}
开发者ID:cmcginn,项目名称:StoreFront,代码行数:32,代码来源:CheckoutController.cs
示例13: OrderService
public OrderService(IOrderRepository rep, ICatalogRepository catalog,
IShippingRepository shippingRepository, IShippingService shippingService)
{
_orderRepository = rep;
_catalogRepository = catalog;
_shippingRepository = shippingRepository;
_shippingService = shippingService;
}
开发者ID:christattum,项目名称:MVC-Storefront,代码行数:8,代码来源:OrderService.cs
示例14: ShippingFixedRateController
public ShippingFixedRateController(IShippingService shippingServicee,
ISettingService settingService,
IPermissionService permissionService)
{
this._shippingService = shippingServicee;
this._settingService = settingService;
this._permissionService = permissionService;
}
开发者ID:nguyentu1982,项目名称:quancu,代码行数:8,代码来源:ShippingFixedRateController.cs
示例15: StoreServiceImpl
public StoreServiceImpl(Func<IStoreRepository> repositoryFactory, ICommerceService commerceService, ISettingsManager settingManager, IShippingService shippingService, IPaymentMethodsService paymentService)
{
_repositoryFactory = repositoryFactory;
_commerceService = commerceService;
_settingManager = settingManager;
_shippingService = shippingService;
_paymentService = paymentService;
}
开发者ID:alt-soft,项目名称:vc-community,代码行数:8,代码来源:StoreServiceImpl.cs
示例16: FixedRateProvider
public FixedRateProvider(ISettingService settingService,
IShippingService shippingService)
{
this._settingService = settingService;
this._shippingService = shippingService;
T = NullLocalizer.Instance;
}
开发者ID:toannguyen241994,项目名称:SmartStoreNET,代码行数:8,代码来源:FixedRateProvider.cs
示例17: RussianPostComputationMethod
public RussianPostComputationMethod(IMeasureService measureService,
IShippingService shippingService, ISettingService settingService,
RussianPostSettings RussianPostSettings)
{
this._shippingService = shippingService;
this._settingService = settingService;
this._RussianPostSettings = RussianPostSettings;
}
开发者ID:minuzZ,项目名称:zelectroshop,代码行数:8,代码来源:RussianPostComputationMethod.cs
示例18: PayPalController
public PayPalController(IOrderService orderService,
ILogger logger, IPipelineEngine pipeline, IMailerService mail, IShippingService shippingService) {
_orderService = orderService;
_logger = logger;
_pipeline = pipeline;
_mail = mail;
_shippingService = shippingService;
}
开发者ID:christattum,项目名称:MVC-Storefront,代码行数:8,代码来源:PayPalController.cs
示例19: AustraliaPostComputationMethod
public AustraliaPostComputationMethod(IMeasureService measureService,
IShippingService shippingService, ISettingService settingService,
AustraliaPostSettings australiaPostSettings)
{
this._measureService = measureService;
this._shippingService = shippingService;
this._settingService = settingService;
this._australiaPostSettings = australiaPostSettings;
}
开发者ID:cmcginn,项目名称:StoreFront,代码行数:9,代码来源:AustraliaPostComputationMethod.cs
示例20: CheckoutController
public CheckoutController(IWorkContext workContext,
IStoreContext storeContext,
IStoreMappingService storeMappingService,
IShoppingCartService shoppingCartService,
ILocalizationService localizationService,
ITaxService taxService,
ICurrencyService currencyService,
IPriceFormatter priceFormatter,
IOrderProcessingService orderProcessingService,
ICustomerService customerService,
IGenericAttributeService genericAttributeService,
ICountryService countryService,
IStateProvinceService stateProvinceService,
IShippingService shippingService,
IPaymentService paymentService,
IPluginFinder pluginFinder,
IOrderTotalCalculationService orderTotalCalculationService,
ILogger logger,
IOrderService orderService,
IWebHelper webHelper,
HttpContextBase httpContext,
IMobileDeviceHelper mobileDeviceHelper,
OrderSettings orderSettings,
RewardPointsSettings rewardPointsSettings,
PaymentSettings paymentSettings,
ShippingSettings shippingSettings,
AddressSettings addressSettings)
{
this._workContext = workContext;
this._storeContext = storeContext;
this._storeMappingService = storeMappingService;
this._shoppingCartService = shoppingCartService;
this._localizationService = localizationService;
this._taxService = taxService;
this._currencyService = currencyService;
this._priceFormatter = priceFormatter;
this._orderProcessingService = orderProcessingService;
this._customerService = customerService;
this._genericAttributeService = genericAttributeService;
this._countryService = countryService;
this._stateProvinceService = stateProvinceService;
this._shippingService = shippingService;
this._paymentService = paymentService;
this._pluginFinder = pluginFinder;
this._orderTotalCalculationService = orderTotalCalculationService;
this._logger = logger;
this._orderService = orderService;
this._webHelper = webHelper;
this._httpContext = httpContext;
this._mobileDeviceHelper = mobileDeviceHelper;
this._orderSettings = orderSettings;
this._rewardPointsSettings = rewardPointsSettings;
this._paymentSettings = paymentSettings;
this._shippingSettings = shippingSettings;
this._addressSettings = addressSettings;
}
开发者ID:haithemChkel,项目名称:nopCommerce_33,代码行数:57,代码来源:CheckoutController.cs
注:本文中的IShippingService类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论