pan
2025-11-19 c84db706e8c8d82a96bb4b4c18c243a42b2976c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_IInboundService;
 
namespace WIDESEA_InboundService
{
    public class InboundService : IInboundService
    {
        public IInboundOrderDetailService InboundOrderDetailService { get; }
 
        public IInboundOrderService InbounOrderService { get; }
 
        public InboundService(IInboundOrderDetailService inboundOrderDetailService, IInboundOrderService inbounOrderService)
        {
            InboundOrderDetailService = inboundOrderDetailService;
            InbounOrderService = inbounOrderService;
        }
    }
}