示例#1
0
        public ActionResult ManageLawQuestions(int lawId)
        {
            LawService service = new LawService();
            var        model   = service.GetLawEditModel(lawId);

            return(View(model));
        }
示例#2
0
        public ActionResult ManageLawSuggestedRepresentatives(int lawId)
        {
            LawService service = new LawService();
            var        model   = service.GetLawEditModel(lawId);

            return(View(model));
        }
示例#3
0
        public ActionResult LawDetails(int lawId)
        {
            LawService   service = new LawService();
            LawEditModel model   = service.GetLawEditModel(lawId);

            return(View(model));
        }