1
wankeda
4 天以前 40ef7a7bc011294193d73f46146d54730d739d92
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
using WIDESEA_IBasicService;
 
namespace WIDESEA_BasicService
{
    public class BasicService : IBasicService
    {
        public IPalletCodeInfoService PalletCodeInfoService { get; }
 
        public ILocationInfoService LocationInfoService { get; }
 
        public IMaterielInfoService MaterielInfoService { get; }
 
        public IWarehouseService WarehouseService { get; }
 
        public IMaterielCodeInfoService MaterielCodeInfoService { get; }
 
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService, IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService)
        {
            LocationInfoService = locationInfoService;
            MaterielInfoService = materielInfoService;
            WarehouseService = warehouseService;
            PalletCodeInfoService = palletCodeInfoService;
            MaterielCodeInfoService = materielCodeInfoService;
        }
    }
}