Ejemplo n.º 1
0
 public JsonResult SearchTagsOnQuestion(int questionid, string term, int maxrows)
 {
     var common = new CommonService();
     common.SearchTagsOnQuestion(questionid, term, maxrows);
     return Json(new { common.success, common.message, common.resultlist });
 }