Ejemplo n.º 1
0
        public ActionResult DeleteLawSectionCustomVote(int lawSectionCustomVoteID)
        {
            LawService service   = new LawService();
            var        isDeleted = service.DeleteLawSectionCustomVote(lawSectionCustomVoteID);

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