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