| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_IInboundService; |
| | | using WIDESEA_IInboundService; |
| | | |
| | | namespace WIDESEA_InboundService |
| | | { |
| | | /// <summary> |
| | | /// 入库服务聚合实现类 |
| | | /// </summary> |
| | | public class InboundService : IInboundService |
| | | { |
| | | /// <summary> |
| | | /// 入库单明细服务 |
| | | /// </summary> |
| | | public IInboundOrderDetailService InboundOrderDetailService { get; } |
| | | |
| | | public IInboundOrderService InbounOrderService { get; } |
| | | /// <summary> |
| | | /// 入库单服务 |
| | | /// </summary> |
| | | public IInboundOrderService InboundOrderService { get; } |
| | | |
| | | public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService) |
| | | /// <summary> |
| | | /// 构造函数 |
| | | /// </summary> |
| | | /// <param name="inboundOrderDetailService">入库单明细服务</param> |
| | | /// <param name="inboundOrderService">入库单服务</param> |
| | | public InboundService( |
| | | IInboundOrderDetailService inboundOrderDetailService, |
| | | IInboundOrderService inboundOrderService) |
| | | { |
| | | InboundOrderDetailService = inboundOrderDetailService; |
| | | InbounOrderService = inbounOrderService; |
| | | InboundOrderService = inboundOrderService; |
| | | } |
| | | } |
| | | } |