コード例 #1
0
 public JDComputationMethod(ISettingService settingService,
                            IShippingService shippingService,
                            JDSettings fixedOrByWeightSettings,
                            IStoreContext storeContext,
                            IPriceCalculationService priceCalculationService,
                            IJDService jdService,
                            ILogger log)
 {
     this._settingService          = settingService;
     this._shippingService         = shippingService;
     this._fixedOrByWeightSettings = fixedOrByWeightSettings;
     this._storeContext            = storeContext;
     this._priceCalculationService = priceCalculationService;
     this._jdService = jdService;
     this._log       = log;
 }
コード例 #2
0
ファイル: JDController.cs プロジェクト: haoyk/nopCommerce
 public JDController(IJDService jdService)
 {
     _jdService = jdService;
 }