Example #1
0
 public JsonResult UpdateTestIntroduction(int testid, string introduction)
 {
     var common = new CommonService();
     common.UpdateTestIntroduction(testid, introduction);
     return Json(new { common.success, common.message });
 }