| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core; |
| | | |
| | | namespace WIDESEA_IOutboundService |
| | | { |
| | | public interface IOutboundService:IDependency |
| | | /// <summary> |
| | | /// 出库服务聚合接口 |
| | | /// </summary> |
| | | public interface IOutboundService : IDependency |
| | | { |
| | | /// <summary> |
| | | /// 出库单明细服务 |
| | | /// </summary> |
| | | IOutboundOrderDetailService OutboundOrderDetailService { get; } |
| | | |
| | | /// <summary> |
| | | /// 出库单服务 |
| | | /// </summary> |
| | | IOutboundOrderService OutboundOrderService { get; } |
| | | |
| | | IOutStockLockInfoService OutboundStockLockInfoService { get; } |
| | | /// <summary> |
| | | /// 出库库存锁定信息服务 |
| | | /// </summary> |
| | | IOutStockLockInfoService OutStockLockInfoService { get; } |
| | | } |
| | | } |