Example #1
0
 public virtual async Task <ListResultDto <AuditLog> > GetEntitysAsync([FromQuery] AuditLoggingRetrieveInputDto inputDto)
 {
     return(await auditLoggingAppService.GetEntitysAsync(inputDto, true));
 }
Example #2
0
 public virtual async Task <PagedResultDto <AuditLog> > GetListAsync([FromQuery] AuditLoggingRetrieveInputDto input)
 {
     return(await auditLoggingAppService.GetListAsync(input, true));
 }