Ejemplo n.º 1
0
 public async Task <IEnumerable <AuditLog> > Handle(GetAuditLogsQuery query, CancellationToken cancellationToken)
 {
     return(await _auditLogRepository.FindPagedAsync(query.AccountId, query.Action, query.StartIndex, query.Limit,
                                                     query.SortDirection, cancellationToken));
 }