wanshenmean
8 天以前 eb399b544b4055c1b58a1746f8c453ba41e4010b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using WIDESEA_Core;
 
namespace WIDESEA_IInboundService
{
    /// <summary>
    /// 入库服务聚合接口
    /// </summary>
    public interface IInboundService : IDependency
    {
        /// <summary>
        /// 入库单明细服务
        /// </summary>
        IInboundOrderDetailService InboundOrderDetailService { get; }
 
        /// <summary>
        /// 入库单服务
        /// </summary>
        IInboundOrderService InboundOrderService { get; }
    }
}