예제 #1
0
 public ActionResult GetDanhSachLopHoc(int?TrungTam, int?ChuongTrinh)
 {
     try
     {
         var model = db.SP_APAX_DANHSACHLOP_XEPLOP(TrungTam, ChuongTrinh, TaiKhoan, 0).ToList();
         var json  = Json(model, JsonRequestBehavior.AllowGet);
         json.MaxJsonLength = int.MaxValue;
         return(json);
     }
     catch
     {
         return(Json(null, JsonRequestBehavior.AllowGet));
     }
 }