using WIDESEA_IBasicService; using WIDESEA_IWMsInfoServices; namespace WIDESEA_BasicService { public class BasicService : IBasicService { public IPalletCodeInfoService PalletCodeInfoService { get; } public ILocationInfoService LocationInfoService { get; } public IWarehouseService WarehouseService { get; } public IMaterielCodeInfoService MaterielCodeInfoService { get; } public BasicService(ILocationInfoService locationInfoService, IWarehouseService warehouseService, IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService) { LocationInfoService = locationInfoService; WarehouseService = warehouseService; PalletCodeInfoService = palletCodeInfoService; MaterielCodeInfoService = materielCodeInfoService; } } }