wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_OutboundService/OutboundService.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_IOutboundService;
namespace WIDESEA_OutboundService
{
    /// <summary>
    /// å‡ºåº“业务层集成
    /// </summary>
    public class OutboundService : IOutboundService
    {
        /// <summary>
        /// MES领料业务接口层
        /// </summary>
        public IOutMESOrderService OutMESOrderService { get; }
        /// <summary>
        /// ç”Ÿç®¡æŽ’程业务接口层
        /// </summary>
        public IOutSGOrderService OutSGOrderService { get; }
        /// <summary>
        /// ç”Ÿç®¡æŽ’程明细业务接口层
        /// </summary>
        public IOutSGOrderDetailService OutSGOrderDetailService { get; }
        /// <summary>
        /// å‡ºåº“详情业务接口层
        /// </summary>
        public IOutStockLockInfoService OutStockLockInfoService { get; }
        public OutboundService(IOutMESOrderService outMESOrderService, IOutSGOrderService outSGOrderService, IOutSGOrderDetailService outSGOrderDetailService, IOutStockLockInfoService outStockLockInfoService)
        {
            OutMESOrderService = outMESOrderService;
            OutSGOrderService = outSGOrderService;
            OutSGOrderDetailService = outSGOrderDetailService;
            OutStockLockInfoService = outStockLockInfoService;
        }
    }
}