public ActionResult CreateLawCustomVote(CustomVoteEditModel model) { TryUpdateModel(model); LawService service = new LawService(); service.CreateCustomVote(model); return(RedirectToAction("ManageLawCustomVotes", new { lawId = model.LawID })); }