Ejemplo n.º 1
0
        public ActionResult ManageLawQuestions(int lawId)
        {
            LawService service = new LawService();
            var        model   = service.GetLawEditModel(lawId);

            return(View(model));
        }
Ejemplo n.º 2
0
        public ActionResult ManageLawSuggestedRepresentatives(int lawId)
        {
            LawService service = new LawService();
            var        model   = service.GetLawEditModel(lawId);

            return(View(model));
        }
Ejemplo n.º 3
0
        public ActionResult LawDetails(int lawId)
        {
            LawService   service = new LawService();
            LawEditModel model   = service.GetLawEditModel(lawId);

            return(View(model));
        }