private static GameDetails GetUSGameDetails(string psnId, string gameId, Common.Login login)
        {
            Core.US.Collector collector = new US.Collector(psnId);
            collector.GetGameDetails(gameId, login);

            return null;
        }
        private static GameDetails GetUSGameDetails(string psnId, string gameId, Common.Login login)
        {
            Core.US.Collector collector = new US.Collector(psnId);
            collector.GetGameDetails(gameId, login);

            return(null);
        }
Esempio n. 3
0
        private static Profile GetUSProfile(string psnId)
        {
            Core.US.Collector collector = new US.Collector(psnId);
            collector.GetProfile();
            Core.US.ProfileParser profileParser = new US.ProfileParser(collector.PsnProfileHtml);
            Core.US.PlayedGameParser playedGameParser = new US.PlayedGameParser(collector.GamesHtml);

            Profile collectedProfile = profileParser.GetProfile();
            collectedProfile.PlayedGames = playedGameParser.GetPlayedGames();

            return collectedProfile;
        }
Esempio n. 4
0
        private static Profile GetUSProfile(string psnId)
        {
            Core.US.Collector collector = new US.Collector(psnId);
            collector.GetProfile();
            Core.US.ProfileParser    profileParser    = new US.ProfileParser(collector.PsnProfileHtml);
            Core.US.PlayedGameParser playedGameParser = new US.PlayedGameParser(collector.GamesHtml);

            Profile collectedProfile = profileParser.GetProfile();

            collectedProfile.PlayedGames = playedGameParser.GetPlayedGames();

            return(collectedProfile);
        }