This commit is contained in:
Jonathan Jenne
2023-12-08 10:21:43 +01:00
parent dbeabab832
commit 951c9d9122
4 changed files with 51 additions and 8 deletions

View File

@@ -70,6 +70,12 @@ Public Class ActionService
Return EmailService.SendSignedEmail(pEnvelope, pReceiver)
End Function
Public Function FinalizeEnvelope(pEnvelope As Envelope) As Boolean
If HistoryService.SetEnvelopeStatus(pEnvelope, Constants.EnvelopeStatus.EnvelopeArchived, "System") = False Then
Return False
End If
Return True
End Function
End Class