1
wankeda
2026-03-02 4d5db2fa80e37839bbe2ceeb22e501afd583f8af
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;
        }
    }
}