1
yangpeixing
3 天以前 48e2278d7ac330c7f05deda6f884acb6f01206b4
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
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 IOutboundOrderDetailService OutboundOrderDetailService { get; }
 
        public IOutboundOrderService OutboundOrderService { get; }
 
        public IOutStockLockInfoService OutboundStockLockInfoService { get; }
 
        public INewOutboundOrderDetailService NewOutboundOrderDetailService { get; }
 
        public INewOutboundOrderService NewOutboundOrderService { get; }
 
        public OutboundService(IOutboundOrderDetailService outboundOrderDetailService, IOutboundOrderService outboundOrderService, IOutStockLockInfoService outboundStockLockInfoService, INewOutboundOrderDetailService newOutboundOrderDetailService, INewOutboundOrderService newOutboundOrderService)
        {
            OutboundOrderDetailService = outboundOrderDetailService;
            OutboundOrderService = outboundOrderService;
            OutboundStockLockInfoService = outboundStockLockInfoService;
            NewOutboundOrderDetailService= newOutboundOrderDetailService;
            NewOutboundOrderService = newOutboundOrderService;
        }
    }
}