public ActionResult DoctorRankingData() { try { List <DataChat> lstDataChat = QcTimeRecordServices.GetDoctorRanking().OrderBy(m => m.Count).ToList(); return(Json(lstDataChat, JsonRequestBehavior.AllowGet)); } catch (Exception ex) { throw; } }
public ActionResult TimeoutData() { try { List <DataChat> lstDataChat = QcTimeRecordServices.GetQuanyuanChaoshiLv().OrderBy(m => m.Name).ToList(); return(Json(lstDataChat, JsonRequestBehavior.AllowGet)); } catch (Exception ex) { throw; } }