public Highscore AddNewHighscore(bool hasWon, int playerId)
        {
            Highscore myHighscore;

            NewHighscore = new Highscore(hasWon, NumberOfMoves, playerId);
            return(myHighscore = DbConnection.AddOneHighscoreToDb(NewHighscore));
        }