| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_IOutboundRepository; |
| | | |
| | | namespace WIDESEA_OutboundRepository |
| | | { |
| | | /// <summary> |
| | | /// åºåºä»å¨å®ç°å±éæ |
| | | /// </summary> |
| | | public class OutboundRepository : IOutboundRepository |
| | | { |
| | | public IOutMESOrderRepository OutMESOrderRepository { get; } |
| | | public IOutSGOrderRepository OutSGOrderRepository { get; } |
| | | public IOutSGOrderDetailRepository OutSGOrderDetailRepository { get; } |
| | | public IOutStockLockInfoRepository OutStockLockInfoRepository { get; } |
| | | public OutboundRepository(IOutMESOrderRepository outMESOrderRepository, IOutSGOrderRepository outSGOrderRepository, IOutSGOrderDetailRepository outSGOrderDetailRepository, IOutStockLockInfoRepository outStockLockInfoRepository) |
| | | { |
| | | OutMESOrderRepository = outMESOrderRepository; |
| | | OutSGOrderRepository = outSGOrderRepository; |
| | | OutSGOrderDetailRepository = outSGOrderDetailRepository; |
| | | OutStockLockInfoRepository = outStockLockInfoRepository; |
| | | } |
| | | } |
| | | } |