示例#1
0
        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));
        }