public JsonResult UpdateNoneChoiceScore(int questionid, decimal score)
 {
     var common = new CommonService();
     common.UpdateNoneChoiceScore(questionid, score);
     return Json(new { common.success, common.message });
 }