Exemplo n.º 1
0
        public void sendChat(int id, string chat)
        {
            var game = reader.getGame(id);

            game.chat = chat;
            updater.updateGame(game);
        }
Exemplo n.º 2
0
 // PUT api/values/5
 public void Put([FromBody] Game updatedGame)
 {
     updater.updateGame(updatedGame);
 }