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

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