public IEnumerable <UserGameView> GetUserGames(int userId) { return(userGamesService.GetUserGames(userId)); }
public IActionResult Get() { return(Json(new ApiResultGeneric <IEnumerable <UserGames> >(userGamesService.GetUserGames()))); }