From 38df3a3ff316853be80272301759de68284b1348 Mon Sep 17 00:00:00 2001 From: Tracy Pearson Date: Tue, 30 Aug 2022 11:59:51 -0400 Subject: [PATCH] comment about what the LongDelay is for. --- WpfViewModelFirst/MainWindowViewModel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/WpfViewModelFirst/MainWindowViewModel.cs b/WpfViewModelFirst/MainWindowViewModel.cs index affc6d4..a6f8f0e 100644 --- a/WpfViewModelFirst/MainWindowViewModel.cs +++ b/WpfViewModelFirst/MainWindowViewModel.cs @@ -49,6 +49,7 @@ namespace WpfViewModelFirst private async Task LongDelay() { + // This would be the Repository call in the production application await Task.Delay(500); return "Completed"; }