Example #1
0
 public JsonResult UpdateUserNoneChoiceScore(int questionid, int userid, decimal score)
 {
     var common = new CommonService();
     common.UpdateUserNoneChoiceScore(questionid, userid, score);
     return Json(new { common.message, common.success, common.data });
 }