comment about what the LongDelay is for.

This commit is contained in:
Tracy Pearson
2022-08-30 11:59:51 -04:00
parent abf09308fc
commit 38df3a3ff3

View File

@@ -49,6 +49,7 @@ namespace WpfViewModelFirst
private async Task<string> LongDelay()
{
// This would be the Repository call in the production application
await Task.Delay(500);
return "Completed";
}