public async Task <ServiceActionResult> GetUserDetails(string[] userIds) { var result = await _steamService.GetPlayersAsync(userIds); return(ServiceActionResultFactory.Create(result)); }
public async Task <ServiceActionResult> GetSteamIdFromProfileUrl(string url) { var result = await _gameFinderService.GetSteamIdFromProfileUrlAsync(url); return(ServiceActionResultFactory.Create(result)); }
public async Task <ServiceActionResult> GetGameDetails(long appId) { var result = await _gameFinderService.GetGameDetailsAsync(appId); return(ServiceActionResultFactory.Create(result)); }
public async Task <ServiceActionResult> GetGamesForUser(string steamId64) { var result = await _gameFinderService.GetGamesForSteamIdAsync(steamId64); return(ServiceActionResultFactory.Create(result)); }