Beispiel #1
0
        public async Task <ActionResult <CountryRoundDTO> > GetCountryRound()
        {
            var Country = await _userService.GetCountryByUserID(User.Identity.Name);

            return(Ok(await _roundService.GetCountryRound(Country.ID)));
        }