From 3d2fe532e5d524bd097d954b4f695ad85f3aaf3a Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 2 Jul 2026 01:12:28 +0200 Subject: [PATCH] Change @OUT_RECEIVER_ID type from int to bigint Updated the SQL query in `EnvelopeReceiverAddReadSQL.cs` to change the data type of the `@OUT_RECEIVER_ID` variable from `int` to `bigint`. This modification ensures support for larger identifier values, addressing potential limitations of the previous `int` type. --- .../Common/SQL/EnvelopeReceiverAddReadSQL.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Common/SQL/EnvelopeReceiverAddReadSQL.cs b/EnvelopeGenerator.Application/Common/SQL/EnvelopeReceiverAddReadSQL.cs index af136376..8d59d6aa 100644 --- a/EnvelopeGenerator.Application/Common/SQL/EnvelopeReceiverAddReadSQL.cs +++ b/EnvelopeGenerator.Application/Common/SQL/EnvelopeReceiverAddReadSQL.cs @@ -13,7 +13,7 @@ public class EnvelopeReceiverAddReadSQL : ISQL /// ENV_UID, EMAIL_ADRESS, SALUTATION, PHONE, /// public string Raw => @" - DECLARE @OUT_RECEIVER_ID int + DECLARE @OUT_RECEIVER_ID bigint EXEC [dbo].[PRSIG_API_CREATE_RECEIVER] {0},