This commit is contained in:
Jonathan Jenne
2023-11-02 16:31:03 +01:00
12 changed files with 1011 additions and 1066 deletions

View File

@@ -2,6 +2,8 @@
Imports System.Data.Common
Imports System.Data.SqlClient
Imports DigitalData.Modules.Base
Imports EnvelopeGenerator.Common.Constants
Public Class ReceiverModel
Inherits BaseModel
@@ -15,7 +17,8 @@ Public Class ReceiverModel
.Email = pRow.ItemEx("EMAIL_ADDRESS", ""),
.Name = pRow.ItemEx("NAME", ""),
.Sequence = pRow.ItemEx("SEQUENCE", 0),
.Signature = pRow.ItemEx("SIGNATURE", "")
.Signature = pRow.ItemEx("SIGNATURE", ""),
.Status = ReceiverStatus.Unsigned
}
End Function