Esempio n. 1
0
        public IActionResult About()
        {
            var teamMembers   = _aboutService.GetAllTeamMembers();
            var top4Solutions = _solutionService.GetAllSolutions().Take(4);

            var aboutUs = new AboutUsViewModel
            {
                Solutions   = top4Solutions,
                TeamMembers = teamMembers
            };

            return(View("About", aboutUs));
        }
        public IActionResult AllSolutions()
        {
            var solutions = _solutionsService.GetAllSolutions();

            return(View("Solutions", solutions));
        }