12 lines
484 B
C#
12 lines
484 B
C#
using DigitalData.Core.Contracts.Infrastructure;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
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);
|
|
}
|
|
} |