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