コード例 #1
0
 public async Task <IEnumerable <ContentLogSummaryModel> > GetContentAuditSummary(DashboardSearchModel searchModel)
 {
     try
     {
         return(await DashboardManager.GetContentAuditSummary(searchModel));
     }
     catch (Exception ex)
     {
         _logger.Error("GetContentAuditSummary-- error- ", ex);
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, "Problem in GetContentAuditSummary"));
     }
 }