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
|
{
|
public IMesOutboundOrderService MesOutboundOrderService { get; }
|
|
public IOutboundOrderDetailService OutboundOrderDetailService { get; }
|
|
public IOutboundOrderService OutboundOrderService { get; }
|
|
public IOutStockLockInfoService OutboundStockLockInfoService { get; }
|
|
public OutboundService(IOutboundOrderDetailService outboundOrderDetailService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService, IMesOutboundOrderService mesOutboundOrderService)
|
{
|
OutboundOrderDetailService = outboundOrderDetailService;
|
OutboundOrderService = outboundOrderService;
|
OutboundStockLockInfoService = outboundStockLockInfoService;
|
MesOutboundOrderService = mesOutboundOrderService;
|
}
|
}
|
}
|