Esempio n. 1
0
        public async Task <string> GetOngoingMatchIdAsync(string playerId)
        {
            string ongoingMatchId;

            try
            {
                ongoingMatchId = await apiService.FetchOngoingMatchIdAsync(playerId);
            }
            catch
            {
                throw;
            }
            return(ongoingMatchId);
        }