1
yangpeixing
2026-04-01 67d4e9ca4267049cc67cff15828080d2d5dfce0b
WMS/WIDESEA_WMSServer/WIDESEA_OutboundService/OutboundService.cs
@@ -15,11 +15,17 @@
        public IOutStockLockInfoService OutboundStockLockInfoService { get; }
        public OutboundService(IOutboundOrderDetailService outboundOrderDetailService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService)
        public INewOutboundOrderDetailService NewOutboundOrderDetailService { get; }
        public INewOutboundOrderService NewOutboundOrderService { get; }
        public OutboundService(IOutboundOrderDetailService outboundOrderDetailService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService, INewOutboundOrderDetailService newOutboundOrderDetailService, INewOutboundOrderService newOutboundOrderService)
        {
            OutboundOrderDetailService = outboundOrderDetailService;
            OutboundOrderService = outboundOrderService;
            OutboundStockLockInfoService = outboundStockLockInfoService;
            NewOutboundOrderDetailService= newOutboundOrderDetailService;
            NewOutboundOrderService = newOutboundOrderService;
        }
    }
}