Пример #1
0
        public async Task <IActionResult> OnGetAsync(long id)
        {
            ClubBar = await _clubRepo.GetClubBar(id);

            if (ClubBar == null)
            {
                return(NotFound());
            }

            ClubMembers = await _clubRepo.GetMembers(id, 1, 100);

            return(Page());
        }