public ResponseMessage Move(string moveData) { Move move = moveData.Deserialize <Move>(); Game game = _activeGames.FirstOrDefault(g => g.Id == move.GameId); return(_gameProcessor.Process(game, move)); }