Ejemplo n.º 1
0
 public JsonResult ResortQuestions(int count, List<Question> questions)
 {
     var common = new CommonService();
     common.ResortQuestions(count, questions);
     return Json(new { common.success, common.message });
 }