wangxinhui
2025-11-18 b513ce3a4527e998da66c6f179a279472c7262a8
项目代码/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs
@@ -24,13 +24,22 @@
        public IMaterielCodeInfoService MaterielCodeInfoService { get; }
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService,IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService)
        public ISupplierInfoService SupplierInfoService { get; }
        public ICustomerInfoService CustomerInfoService { get; }
        public IUserInfoService UserInfoService { get; }
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService,IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService, ISupplierInfoService supplierInfoService, ICustomerInfoService customerInfoService,IUserInfoService userInfoService)
        {
            LocationInfoService = locationInfoService;
            MaterielInfoService = materielInfoService;
            WarehouseService = warehouseService;
            PalletCodeInfoService = palletCodeInfoService;
            MaterielCodeInfoService = materielCodeInfoService;
            SupplierInfoService = supplierInfoService;
            CustomerInfoService = customerInfoService;
            UserInfoService = userInfoService;
        }
    }
}