StupendousCounter.Core.ViewModel.CounterViewModel.IncrementAsync C# (CSharp) Method

IncrementAsync() private method

private IncrementAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        private async Task IncrementAsync()
        {
            await _databaseHelper.IncrementCounterAsync(_counter);
            RaisePropertyChanged(() => Value);
        }