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

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