| | |
| | | |
| | | public IOutboundOrderRepository OutboundOrderRepository { get; } |
| | | |
| | | public INewOutboundOrderDetailRepository NewOutboundOrderDetailRepository { get; } |
| | | |
| | | public INewOutboundOrderRepository NewOutboundOrderRepository { get; } |
| | | |
| | | public IOutStockLockInfoRepository OutboundStockLockInfoRepository { get; } |
| | | |
| | | public OutboundRepository(IOutboundOrderDetailRepository outboundOrderDetailRepository, IOutboundOrderRepository outboundOrderRepository, IOutStockLockInfoRepository outboundStockLockInfoRepository) |
| | | public OutboundRepository(IOutboundOrderDetailRepository outboundOrderDetailRepository, IOutboundOrderRepository outboundOrderRepository, IOutStockLockInfoRepository outboundStockLockInfoRepository,INewOutboundOrderRepository newOutboundOrderRepository,INewOutboundOrderDetailRepository newOutboundOrderDetailRepository) |
| | | { |
| | | OutboundOrderDetailRepository = outboundOrderDetailRepository; |
| | | OutboundOrderRepository = outboundOrderRepository; |
| | | NewOutboundOrderDetailRepository = newOutboundOrderDetailRepository; |
| | | NewOutboundOrderRepository = newOutboundOrderRepository; |
| | | OutboundStockLockInfoRepository = outboundStockLockInfoRepository; |
| | | } |
| | | } |