public ActionResult InfoBoxLawSections() { var parliamentId = (int)this.HttpContext.Items["ParliamentId"]; var service = new LawService(); var model = service.GetInfoBoxLawSections(parliamentId); model.Title = GlobalLocalization.PointedOutSectionsTitle; return(PartialView("_InfoBoxLawSections", model)); }