public ActionResult DeleteLawExpertComment(int lawExpertCommentId) { LawService service = new LawService(); var isDeleted = service.DeleteExpertComment(lawExpertCommentId); return(Json(new { isDeleted = isDeleted, lawExpertCommentId = lawExpertCommentId }, JsonRequestBehavior.AllowGet));; }