778e339a61
implement filterable meta for issue #158 update translations and use humanizer lib with datetime/timespan for issue #80
20 lines
610 B
C#
20 lines
610 B
C#
using SharedLibraryCore.Dtos;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// describes the capabilities of the audit info repository
|
|
/// </summary>
|
|
public interface IAuditInformationRepository
|
|
{
|
|
/// <summary>
|
|
/// retrieves a list of audit information for given pagination params
|
|
/// </summary>
|
|
/// <param name="paginationInfo">pagination info</param>
|
|
/// <returns></returns>
|
|
Task<IList<AuditInfo>> ListAuditInformation(PaginationRequest paginationInfo);
|
|
}
|
|
}
|