feat(Receiver): Entsprechend aktualisiert, um die Eigenschaften der Formularanwendung einzubeziehen

This commit is contained in:
Developer 02
2025-05-21 19:31:59 +02:00
parent 79204d4f6d
commit 39cc30f48b
19 changed files with 98 additions and 47 deletions

View File

@@ -1,8 +1,6 @@
Imports System.Drawing
Imports DevExpress.Utils.Svg
Imports DigitalData.Modules.Base
Imports EnvelopeGenerator.Domain.Constants
Imports Newtonsoft.Json
Public Class Receiver
Public Property Id As Integer = 0
@@ -21,7 +19,7 @@ Public Class Receiver
Public Property JobTitle As String = ""
Public Property Email As String
Public Property EmailAddress As String
Public Property Status As ReceiverStatus
@@ -46,7 +44,7 @@ Public Class Receiver
Public ReadOnly Property HasEmailAndName As Boolean
Get
Return String.IsNullOrWhiteSpace(Email) = False And
Return String.IsNullOrWhiteSpace(EmailAddress) = False And
String.IsNullOrWhiteSpace(Name) = False
End Get
End Property
@@ -57,6 +55,6 @@ Public Class Receiver
Public Property PhoneNumber As String = ""
Public Function GetSignature() As String
Return StringEx.GetChecksum(Email.ToUpper)
Return StringEx.GetChecksum(EmailAddress.ToUpper)
End Function
End Class