Пример #1
0
        public void CreateHighScore(int GameID, int points, int time)
        {
            int userID = (int)System.Web.HttpContext.Current.Session["UserID"];

            _highscoreHandler.CreateHighScore(GameID, userID, points, time);
        }
Пример #2
0
 public void test_CreateHighScore_NoGame()
 {
     handler.CreateHighScore(8000, 2, 15, 20);
 }