wanshenmean
4 天以前 ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b
Code/WMS/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundService.cs
@@ -1,18 +1,25 @@
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; }
    }
}