From 788d58b413a7c3d66e7ec9328dce93dab336208b Mon Sep 17 00:00:00 2001 From: mahan Date: Sun, 7 Dec 2025 19:39:01 +0330 Subject: [PATCH] change Id to ENtityId in getting institution by installment Id from FInancial invoice Item for Verify gateway payment controller --- ServiceHost/Controllers/GeneralController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ServiceHost/Controllers/GeneralController.cs b/ServiceHost/Controllers/GeneralController.cs index e19d1c45..59027f37 100644 --- a/ServiceHost/Controllers/GeneralController.cs +++ b/ServiceHost/Controllers/GeneralController.cs @@ -165,7 +165,7 @@ public class GeneralController : GeneralBaseController { var institutionContractId = await _institutionContractApplication.GetIdByInstallmentId( - editFinancialInvoiceItem.Id); + editFinancialInvoiceItem.EntityId); await _institutionContractApplication.SetPendingWorkflow(institutionContractId); } }