private Task openSettings() { var settingsStopwatch = stopwatchProvider.CreateAndStore(MeasuredOperation.OpenSettingsView); settingsStopwatch.Start(); return(navigate <SettingsViewModel>()); }
public void StartReportsStopwatch() { if (!hasOpenedReports) { var reportsStopwatch = stopwatchProvider.CreateAndStore(MeasuredOperation.OpenReportsViewForTheFirstTime); reportsStopwatch.Start(); hasOpenedReports = true; } }