public SettlementController(ISettlementService settlementService, ICustomerService customerService
                             , IInStorageService inStorageService, IBillingService billingService, IWorkContext workContext)
 {
     _settlementService = settlementService;
     _customerService   = customerService;
     _inStorageService  = inStorageService;
     _billingService    = billingService;
     _workContext       = workContext;
 }
 public WayBillController(IInStorageService inStorageService, IOrderService orderService, IFreightService freightService, ICustomerService customerService, IWayBillTemplateService wayBillTemplateService, IWayBillInfoRepository wayBillInfoRepository)
 {
     _inStorageService       = inStorageService;
     _orderService           = orderService;
     _freightService         = freightService;
     _customerService        = customerService;
     _wayBillTemplateService = wayBillTemplateService;
     _wayBillInfoRepository  = wayBillInfoRepository;
 }