Ejemplo n.º 1
0
 public JsonResult UpdateTestTitle(int testid, string text)
 {
     var common = new CommonService();
     common.UpdateTestTitle(testid, text);
     return Json(new { common.success, common.message });
 }