Пример #1
0
 public ActionResult About()
 {
     return(View("About", new AboutPageData()
     {
         SideBarData = new MainSideBarData(),
         AllSkills = _skillLoader.ListPresentables()
     }));
 }
Пример #2
0
 public ActionResult Index()
 {
     return(View(new SkillsListData()
     {
         Skills = _skillLoader.ListPresentables()
                  .OrderByDescending(s => s.IsCoreSkill)
                  .ThenBy(s => s.Rank)
                  .ToList()
     }));
 }