liulijun
2026-03-20 1c631b345aae30bb6aa7e9dc8d856a0f40d5f1e3
项目代码/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs
@@ -26,7 +26,11 @@
        public ISupplierInfoService SupplierInfoService { get; }
        public BasicService(ILocationInfoService locationInfoService, IMaterielInfoService materielInfoService, IWarehouseService warehouseService,IPalletCodeInfoService palletCodeInfoService, IMaterielCodeInfoService materielCodeInfoService, ISupplierInfoService supplierInfoService)
        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;
@@ -34,6 +38,8 @@
            PalletCodeInfoService = palletCodeInfoService;
            MaterielCodeInfoService = materielCodeInfoService;
            SupplierInfoService = supplierInfoService;
            CustomerInfoService = customerInfoService;
            UserInfoService = userInfoService;
        }
    }
}