コード例 #1
0
        public ActionResult ThinkTank(string type, string typeId, string locationType, string visibility)
        {
            ViewBag.LocationType = locationType;
            ViewBag.Visibility = visibility;

            using (var provider = new ProgramProvider())
            {
                var programs = provider.GetForLocationType(locationType, visibility, typeId);

                return View(programs);
            }
        }