pan
2025-11-08 b215aac8f76330fff40c55cc70a48bdd00726085
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;
        }
    }
}