Esempio n. 1
0
 public async Task <Player> ModifyWithoutFetching(Guid playerId, ModifiedPlayer player)
 {
     return(await repository.ModifyWithoutFetching(playerId, player));
 }
Esempio n. 2
0
 public async Task <Player> IncrementScoreWithoutFetching(Guid playerId, ModifiedPlayer player)
 {
     return(await repository.IncrementScoreWithoutFetching(playerId));
 }
Esempio n. 3
0
 public async Task <Player> Modify(Guid playerId, ModifiedPlayer player)
 {
     return(await repository.Modify(playerId, player));
 }