wankeda
2026-01-27 d13e6e7d5df05ba244971d2fabb788ccb0f5c12a
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;
        }
    }
}