public ActionResult InfoBoxLaws() { var parliamentId = (int)this.HttpContext.Items["ParliamentId"]; var service = new LawService(); var model = service.GetInfoBoxLaws(parliamentId); model.Title = GlobalLocalization.PointedOutLawsTitle; return(PartialView("_InfoBoxLaws", model)); }