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

@@ -6,5 +6,7 @@ namespace EnvelopeGenerator.Infrastructure.Contracts
public interface IEnvelopeHistoryRepository : ICRUDRepository<EnvelopeHistory, long>
{
Task<int> CountAsync(int? envelopeId = null, string? userReference = null, int? status = null);
Task<IEnumerable<EnvelopeHistory>> ReadAsync(int? envelopeId = null, string? userReference = null, int? status = null);
}
}