| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core; |
| | | |
| | | namespace WIDESEA_IInboundService |
| | | { |
| | | /// <summary> |
| | | /// 入库服务聚合接口 |
| | | /// </summary> |
| | | public interface IInboundService : IDependency |
| | | { |
| | | /// <summary> |
| | | /// 入库单明细服务 |
| | | /// </summary> |
| | | IInboundOrderDetailService InboundOrderDetailService { get; } |
| | | |
| | | IInboundOrderService InbounOrderService { get; } |
| | | /// <summary> |
| | | /// 入库单服务 |
| | | /// </summary> |
| | | IInboundOrderService InboundOrderService { get; } |
| | | } |
| | | } |