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 = "Добавить накладную в существующую перевозку";
 }
 public UpdateOrderDeliveryCost(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
Esempio n. 4
0
 public OnChangeTransportCompany(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
Esempio n. 5
0
 public OnChangeVehicleTypeId(ICommonDataService dataService, IHistoryService historyService, IDeliveryCostCalcService calcService)
 {
     _dataService    = dataService;
     _historyService = historyService;
     _calcService    = calcService;
 }
 public UpdateShippingDeliveryCost(IDeliveryCostCalcService calcService)
 {
     _calcService = calcService;
 }
 public UpdateTariffDeliveryCost(ICommonDataService dataService, IDeliveryCostCalcService calcService)
 {
     _dataService = dataService;
     _calcService = calcService;
 }