Beispiel #1
0
        public async Task <IActionResult> ListGamesAsync()
        {
            var games = await _gamesRepository.GetAllAsync(query => query.ForSite(Site).Where(g => g.IsPublished));

            return(ListSections(games.items, "Игры"));
        }