| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_IInboundRepository; |
| | | using WIDESEA_IInboundService; |
| | | |
| | | namespace WIDESEA_InboundService |
| | |
| | | |
| | | public IInboundOrderService InbounOrderService { get; } |
| | | |
| | | public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService) |
| | | public IReceiveOrderDetailService ReceiveOrderDetailService { get; } |
| | | |
| | | public IReceiveOrderService ReceiveOrderService { get; } |
| | | |
| | | public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService, IReceiveOrderDetailService receiveOrderDetailService, IReceiveOrderService receiveOrderService) |
| | | { |
| | | InboundOrderDetailService = inboundOrderDetailService; |
| | | InbounOrderService = inbounOrderService; |
| | | ReceiveOrderDetailService = receiveOrderDetailService; |
| | | ReceiveOrderService = receiveOrderService; |
| | | } |
| | | } |
| | | } |