private async Task StartProcess() { while (_currentValue < Int32.MaxValue) { await Task.Delay(800); _currentValue++; _recorder.RecordInfo("App", $"value: {_currentValue}"); } }
private void WrongCommandHandler() { _applicationRecorder.RecordInfo("Local", "Wrong command"); }