StupendousCounter.Core.ViewModel.CounterViewModel.IncrementAsync C# (CSharp) 메소드

IncrementAsync() 개인적인 메소드

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