Entität 'Receiver' zur Entität 'EnvelopeHistory' hinzugefügt.

This commit is contained in:
Developer 02
2024-06-03 16:13:00 +02:00
parent 0818b8d606
commit 8d5493969f
7 changed files with 40 additions and 6 deletions

View File

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