wanshenmean
8 天以前 559bb7b4be83575cc5fedee98484647243c96f89
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; }
    }
}