using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_IOutboundService;
namespace WIDESEA_OutboundService
{
///
/// 出库业务层集成
///
public class OutboundService : IOutboundService
{
///
/// MES领料业务接口层
///
public IOutMESOrderService OutMESOrderService { get; }
///
/// 生管排程业务接口层
///
public IOutSGOrderService OutSGOrderService { get; }
///
/// 生管排程明细业务接口层
///
public IOutSGOrderDetailService OutSGOrderDetailService { get; }
///
/// 出库详情业务接口层
///
public IOutStockLockInfoService OutStockLockInfoService { get; }
public OutboundService(IOutMESOrderService outMESOrderService, IOutSGOrderService outSGOrderService, IOutSGOrderDetailService outSGOrderDetailService, IOutStockLockInfoService outStockLockInfoService)
{
OutMESOrderService = outMESOrderService;
OutSGOrderService = outSGOrderService;
OutSGOrderDetailService = outSGOrderDetailService;
OutStockLockInfoService = outStockLockInfoService;
}
}
}