From 2b66d4c2dc5b1c00805fa47ba65d9a8d2724ab35 Mon Sep 17 00:00:00 2001
From: liulijun <liulijun@hnkhzn.com>
Date: 星期三, 25 二月 2026 08:48:01 +0800
Subject: [PATCH] 清理多余文件
---
代码管理/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs | 17 +----------------
1 files changed, 1 insertions(+), 16 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs"
index 79516fb..dbe3249 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMSServices/WIDESEA_BasicService/BasicService.cs"
@@ -14,31 +14,16 @@
{
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 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)
+ public BasicService(ILocationInfoService locationInfoService, IWarehouseService warehouseService, IUserInfoService userInfoService)
{
LocationInfoService = locationInfoService;
- MaterielInfoService = materielInfoService;
WarehouseService = warehouseService;
- PalletCodeInfoService = palletCodeInfoService;
- MaterielCodeInfoService = materielCodeInfoService;
- SupplierInfoService = supplierInfoService;
- CustomerInfoService = customerInfoService;
UserInfoService = userInfoService;
}
}
--
Gitblit v1.9.3