Пример #1
0
 public async Task <IEnumerable <DashboardContentModel> > GetContentLog(DashboardSearchModel searchModel)
 {
     try
     {
         return(await DashboardManager.GetContentLog(searchModel));
     }
     catch (Exception ex)
     {
         _logger.Error("GetContentLog-- error- ", ex);
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.InternalServerError, "Problem in GetContentLog"));
     }
 }