Esempio n. 1
0
        public async Task <PlayerProfile> GetPlayerProfileByIdAsync(string playerId)
        {
            PlayerProfile player;

            try
            {
                player = await apiService.FetchPlayerProfileByIdAsync(playerId);
            }
            catch
            {
                throw;
            }
            return(player);
        }