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