Exemplo n.º 1
0
 static void Main(string[] args)
 {
     //Console.WriteLine("Hello World!♦♣♥♠");
     BGame realGame = new BGame();
     //realGame
     //realGame.printAllPlayers();
 }
Exemplo n.º 2
0
 // PUT: api/Game/5
 public BGame PutGame(int id, BGame value)
 {
     return(gameService.CreateOrUpdate(value));
 }
Exemplo n.º 3
0
 public BGame PostGame(BGame value)
 {
     return(gameService.CreateOrUpdate(value));
 }