Example #1
0
 public OrderCalculationController(IGoodsService goodsService, ICurrencyService currencyService, IShippingAreaService shippingAreaService, IWalletService walletService, IConfigService configService)
 {
     _goodsService        = goodsService;
     _currencyService     = currencyService;
     _shippingAreaService = shippingAreaService;
     _walletService       = walletService;
     _configService       = configService;
 }
Example #2
0
 public GoodsController(IGoodsService goodsService, ICurrencyService currencyService, IGoodsCategoryService goodsCategoryServices, IStorageFileService storageFileService, IMarkupService markupService, IShippingAreaService shippingAreaService)
 {
     _goodsService          = goodsService;
     _currencyService       = currencyService;
     _goodsCategoryServices = goodsCategoryServices;
     _storageFileService    = storageFileService;
     _markupService         = markupService;
     _shippingAreaService   = shippingAreaService;
 }
Example #3
0
 public OrderController(IOrderService orderService, IGoodsService goodsService, ICurrencyService currencyService, IStorageFileService storageFileService, IShippingAreaService shippingAreaService, IWalletService walletService, IConfigService configService)
 {
     _orderService        = orderService;
     _goodsService        = goodsService;
     _currencyService     = currencyService;
     _storageFileService  = storageFileService;
     _shippingAreaService = shippingAreaService;
     _walletService       = walletService;
     _configService       = configService;
 }
 public MemberAddressController(ICurrencyService currencyService, IMemberService memberService, IShippingAreaService shippingAreaService)
 {
     _currencyService     = currencyService;
     _memberService       = memberService;
     _shippingAreaService = shippingAreaService;
 }
 /// <summary>
 /// 构造
 /// </summary>
 /// <param name="shippingAreaService"></param>
 public LogisticsController(IShippingAreaService shippingAreaService)
 {
     _shippingAreaService = shippingAreaService;
 }
 /// <summary>
 /// 构造
 /// </summary>
 /// <param name="shippingAreaService"></param>
 /// <param name="currencyService"></param>
 /// <param name="userContainer"></param>
 public ShippingAreaController(IShippingAreaService shippingAreaService, ICurrencyService currencyService, IUserContainer userContainer)
 {
     _shippingAreaService = shippingAreaService;
     _currencyService     = currencyService;
     _userContainer       = userContainer;
 }