Ejemplo n.º 1
0
 public SearchResponse(SearchResults <User> searchResults)
 {
     total = searchResults.total;
     users = searchResults.results;
 }
Ejemplo n.º 2
0
 public EventLogSearchResponse(SearchResults <EventLog> searchResults)
 {
     this.eventLogs = searchResults.results;
     this.total     = searchResults.total;
 }
 public AuditLogSearchResponse(SearchResults <AuditLog> searchResults)
 {
     auditLogs = searchResults.results;
     total     = searchResults.total;
 }