wanshenmean
2026-03-11 5af11cc200dd5ebe474b9c0475883b0e6d1e3759
Code/WMS/WIDESEA_WMSServer/WIDESEA_InboundService/InboundService.cs
@@ -1,22 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_IInboundService;
using WIDESEA_IInboundService;
namespace WIDESEA_InboundService
{
    /// <summary>
    /// 入库服务聚合实现类
    /// </summary>
    public class InboundService : IInboundService
    {
        /// <summary>
        /// 入库单明细服务
        /// </summary>
        public IInboundOrderDetailService InboundOrderDetailService { get; }
        public IInboundOrderService InbounOrderService { get; }
        /// <summary>
        /// 入库单服务
        /// </summary>
        public IInboundOrderService InboundOrderService { get; }
        public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService)
        /// <summary>
        /// 构造函数
        /// </summary>
        /// <param name="inboundOrderDetailService">入库单明细服务</param>
        /// <param name="inboundOrderService">入库单服务</param>
        public InboundService(
            IInboundOrderDetailService inboundOrderDetailService,
            IInboundOrderService inboundOrderService)
        {
            InboundOrderDetailService = inboundOrderDetailService;
            InbounOrderService = inbounOrderService;
            InboundOrderService = inboundOrderService;
        }
    }
}