Exemple #1
0
        public ActionResult DoctorRankingData()
        {
            try
            {
                List <DataChat> lstDataChat = QcTimeRecordServices.GetDoctorRanking().OrderBy(m => m.Count).ToList();

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

                return(Json(lstDataChat, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                throw;
            }
        }