public ActionResult ManageLawQuestions(int lawId) { LawService service = new LawService(); var model = service.GetLawEditModel(lawId); return(View(model)); }
public ActionResult ManageLawSuggestedRepresentatives(int lawId) { LawService service = new LawService(); var model = service.GetLawEditModel(lawId); return(View(model)); }
public ActionResult LawDetails(int lawId) { LawService service = new LawService(); LawEditModel model = service.GetLawEditModel(lawId); return(View(model)); }