示例#1
0
        public ActionResult CreateLawCustomVote(CustomVoteEditModel model)
        {
            TryUpdateModel(model);
            LawService service = new LawService();

            service.CreateCustomVote(model);
            return(RedirectToAction("ManageLawCustomVotes", new { lawId = model.LawID }));
        }