feat(Receiver): Entsprechend aktualisiert, um die Eigenschaften der Formularanwendung einzubeziehen
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user