using SharedLibraryCore.Dtos;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SharedLibraryCore.Interfaces
{
///
/// describes the capabilities of the audit info repository
///
public interface IAuditInformationRepository
{
///
/// retrieves a list of audit information for given pagination params
///
/// pagination info
///
Task> ListAuditInformation(PaginationRequest paginationInfo);
}
}