private async void RenameLogView(LogView logView)
        {
            if (logView == null)
            {
                if (SelectedLogView == null)
                {
                    return;
                }
                logView = SelectedLogView;
            }

            await LogViewService.RenameLogViewRoutine(_dialogCoordinator, this, LogViewsSourceCache, logView);
        }
 private async void RenameLogView(LogView logView)
 {
     await LogViewService.RenameLogViewRoutine(DialogCoordinator, this, LogViewsSourceCache, logView);
 }