public JsonResult GetDanhSachLopHoc(int?TrungTam, int?LopCu)
        {
            var model = db.SP_APAX_DANHSACHLOPCHUYENTT(User.Identity.Name).ToList();
            var json  = Json(model, JsonRequestBehavior.AllowGet);

            json.MaxJsonLength = int.MaxValue;
            return(json);
        }