wanshenmean
2026-03-30 782aceccc76b0f2a2da18fd61816211d821bca72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using WIDESEA_IInboundService;
 
namespace WIDESEA_InboundService
{
    /// <summary>
    /// 入库服务聚合实现类
    /// </summary>
    public class InboundService : IInboundService
    {
        /// <summary>
        /// 入库单明细服务
        /// </summary>
        public IInboundOrderDetailService InboundOrderDetailService { get; }
 
        /// <summary>
        /// 入库单服务
        /// </summary>
        public IInboundOrderService InboundOrderService { get; }
 
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="inboundOrderDetailService">入库单明细服务</param>
        /// <param name="inboundOrderService">入库单服务</param>
        public InboundService(
            IInboundOrderDetailService inboundOrderDetailService,
            IInboundOrderService inboundOrderService)
        {
            InboundOrderDetailService = inboundOrderDetailService;
            InboundOrderService = inboundOrderService;
        }
    }
}