| | |
| | | { |
| | | public class OutboundService : IOutboundService |
| | | { |
| | | public IMesOutboundOrderService MesOutboundOrderService { get; } |
| | | |
| | | public IOutboundOrderDetailService OutboundOrderDetailService { get; } |
| | | |
| | | public IOutboundOrderService OutboundOrderService { get; } |
| | | |
| | | public IOutStockLockInfoService OutboundStockLockInfoService { get; } |
| | | |
| | | public OutboundService(IOutboundOrderDetailService outboundOrderDetailService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService) |
| | | public IMesPPOutboundOrderService MesPPOutboundOrderService { get; } |
| | | |
| | | public IMesPPOutboundOrderDetailService MesPPOutboundOrderDetailService { get; } |
| | | |
| | | public IMesPPCutOutboundOrderService MesPPCutOutboundOrderService { get; } |
| | | |
| | | public IMesPPCutOutboundOrderDetailService MesPPCutOutboundOrderDetailService { get; } |
| | | public IProOutOrderService ProOutOrderService { get; } |
| | | public IProOutOrderDetailService ProOutOrderDetailService { get; } |
| | | |
| | | public OutboundService(IOutboundOrderDetailService outboundOrderDetailService,IMesPPOutboundOrderService mesPPOutboundOrderService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService, IMesOutboundOrderService mesOutboundOrderService, IProOutOrderService proOutOrderService, IProOutOrderDetailService proOutOrderDetailService) |
| | | { |
| | | OutboundOrderDetailService = outboundOrderDetailService; |
| | | OutboundOrderService = outboundOrderService; |
| | | OutboundStockLockInfoService = outboundStockLockInfoService; |
| | | MesOutboundOrderService = mesOutboundOrderService; |
| | | MesPPOutboundOrderService = mesPPOutboundOrderService; |
| | | ProOutOrderService = proOutOrderService; |
| | | ProOutOrderDetailService = proOutOrderDetailService; |
| | | } |
| | | } |
| | | } |