1
yangpeixing
2026-04-01 73569b329e4ed2293a63e5a739d5fb0314fc4fd8
WMS/WIDESEA_WMSServer/WIDESEA_InboundService/InboundService.cs
@@ -11,13 +11,16 @@
    {
        public IInboundOrderDetailService InboundOrderDetailService { get; }
        public ICPInboundOrderDetailService CPInboundOrderDetailService { get; }
        public IInboundOrderService InbounOrderService { get; }
        public IInboundOrder_HtyService InboundOrder_HtyService { get; }
        public IInboundOrderDetail_HtyService InboundOrderDetail_HtyService { get; }
        public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService)
        public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService,ICPInboundOrderDetailService cPInboundOrderDetailService)
        {
            InboundOrderDetailService = inboundOrderDetailService;
            InbounOrderService = inbounOrderService;
            CPInboundOrderDetailService =cPInboundOrderDetailService;
        }
    }
}