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