コード例 #1
0
 public OnChangeTarifficationType(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
     : base(dataService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
 public UnionOrdersInExisted(ICommonDataService dataService,
                             IHistoryService historyService,
                             IShippingCalculationService shippingCalculationService,
                             IChangeTrackerFactory changeTrackerFactory,
                             IDeliveryCostCalcService calcService)
     : base(dataService, shippingCalculationService)
 {
     _historyService       = historyService;
     _changeTrackerFactory = changeTrackerFactory;
     _calcService          = calcService;
     Color       = AppColor.Orange;
     Description = "Добавить накладную в существующую перевозку";
 }
コード例 #3
0
 public UpdateOrderDeliveryCost(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
コード例 #4
0
 public OnChangeTransportCompany(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
コード例 #5
0
 public OnChangeVehicleTypeId(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
コード例 #6
0
 public UpdateShippingDeliveryCost(IDeliveryCostCalcService calcService)
 {
     _calcService = calcService;
 }
コード例 #7
0
 public UpdateTariffDeliveryCost(ICommonDataService dataService, IDeliveryCostCalcService calcService)
 {
     _dataService = dataService;
     _calcService = calcService;
 }