From 1617624489d2b3e07203e026c871fdc44548eeeb Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Tue, 6 Aug 2024 16:45:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20asn=E4=B8=AD=E7=9A=84=20?= =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Plans/SupplierAsns/SupplierAsnManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Plans/SupplierAsns/SupplierAsnManager.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Plans/SupplierAsns/SupplierAsnManager.cs index 823af80db..8f8c68dcb 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Plans/SupplierAsns/SupplierAsnManager.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Domain/Plans/SupplierAsns/SupplierAsnManager.cs @@ -13,11 +13,13 @@ namespace Win_in.Sfs.Wms.Store.Domain; public class SupplierAsnManager : SfsStoreManagerBase, ISupplierAsnManager { private readonly ISupplierAsnRepository _repository; + private readonly ISupplierAppService _supplierAppService; public SupplierAsnManager( - ISupplierAsnRepository repository) : base(repository) + ISupplierAsnRepository repository, ISupplierAppService supplierAppService) : base(repository) { _repository = repository; + _supplierAppService = supplierAppService; } #region 东阳使用 @@ -32,6 +34,9 @@ public class SupplierAsnManager : SfsStoreManagerBase