示例#1
0
        public ActionResult DeleteLawCustomVote(int customVoteId)
        {
            LawService service   = new LawService();
            var        isDeleted = service.DeleteCustomVote(customVoteId);

            return(Json(new { isDeleted = isDeleted, customVoteId = customVoteId }, JsonRequestBehavior.AllowGet));;
        }