wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
项目代码/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;
        }
    }
}