Example #1
0
        public ActionResult Index()
        {
            // TODO: list the contents of the IncludeStorage; Includes and IncludeCombinations
            var model = new IncludeIndexModel {
                Includes = _combiner.GetAllIncludes(), Combinations = _combiner.GetAllCombinations()
            };

            return(View(model));
        }
 public ActionResult Index()
 {
     // TODO: list the contents of the IncludeStorage; Includes and IncludeCombinations
     var model = new IncludeIndexModel { Includes = _combiner.GetAllIncludes(), Combinations = _combiner.GetAllCombinations() };
     return View(model);
 }