예제 #1
0
 public TrackerBusiness(long userId)
 {
     _userId         = userId;
     _usersBusiness  = new UsersBusiness();
     _historyList    = new ListRepository(Utilities.Constans.HistoryListNamePrefix + _userId);
     _leaderboardSet = new ScoresRepository(Utilities.Constans.LeaderboardListName);
 }
예제 #2
0
        protected virtual void Dispose(bool disposing)
        {
            if (!disposed)
            {
                if (disposing)
                {
                    _usersBusiness = null;
                }

                disposed = true;
            }
        }