public ActionResult CreateSectionCustomVote(LawSectionCustomVoteModel model) { TryUpdateModel(model); LawService service = new LawService(); service.CreateLawSectionCustomVote(model); return(RedirectToAction("ManageLawSections", new { lawId = model.LawID })); }