07-12-2024 Name vorschlagen

This commit is contained in:
2023-12-07 09:58:57 +01:00
parent 1108fa47e0
commit 474bf89ee8
3 changed files with 52 additions and 9 deletions

View File

@@ -365,4 +365,11 @@ Public Class EnvelopeEditorController
End If
End Function
Public Function GetLastNameByEmailAdress(pEmailAdress As String) As String
If (String.IsNullOrEmpty(pEmailAdress) = False) Then
Return ReceiverModel.GetLastUsedReceiverName(pEmailAdress, Envelope.UserId)
Else
Return String.Empty
End If
End Function
End Class