public ActionResult DeleteLawCustomVote(int customVoteId) { LawService service = new LawService(); var isDeleted = service.DeleteCustomVote(customVoteId); return(Json(new { isDeleted = isDeleted, customVoteId = customVoteId }, JsonRequestBehavior.AllowGet));; }