/// <inheritdoc /> public async Task IncrementAsync() { int value = await _repository.GetAsync(); value++; await _repository.SetAsync(value); }