IsRejected und ReadRejectedAsync Methoden zu EnvelopeHistoryService hinzugefügt.

This commit is contained in:
Developer 02
2024-06-03 10:15:26 +02:00
parent 047c4d09e8
commit 0818b8d606
4 changed files with 38 additions and 3 deletions

View File

@@ -15,6 +15,8 @@ namespace EnvelopeGenerator.Application.Contracts
Task<bool> IsSigned(int envelopeId, string userReference);
Task<IEnumerable<EnvelopeHistoryDto>> ReadRejectedAsync(int envelopeId, string? userReference = null);
Task<DataResult<long>> RecordAsync(int envelopeId, string userReference, EnvelopeStatus status);
}
}