Ejemplo n.º 1
0
        /// 18.)
        public void RetrievePlayerStatsByAccountId(Double accountId, String season, PlayerLifetimeStats.Callback callback)
        {
            PlayerLifetimeStats cb = new PlayerLifetimeStats(callback);

            InvokeWithCallback("playerStatsService", "retrievePlayerStatsByAccountId", new object[] { accountId, season }, cb);
        }
Ejemplo n.º 2
0
 public PlayerLifetimeStats(PlayerLifetimeStats.Callback callback)
 {
     this.callback = callback;
 }