Esempio n. 1
0
 public Task <Player> IncrementPlayerScore([FromBody] Guid id, int added)
 {
     return(processor.IncrementPlayerScore(id, added));
 }
Esempio n. 2
0
 public Task <int> IncrementPlayerScore([FromBody] Guid playerId, [FromBody] int added)
 {
     return(processor.IncrementPlayerScore(playerId, added));
 }