public int Put(IFormCollection value)
        {
            var userid  = value["userid"];
            var text    = value["drawText"];
            var actGame = new GameDB();
            var gameId  = actGame.Add(userid, text);

            return(gameId);
        }