private void DataGridRow_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            log.Debug(nameof(DataGridRow_MouseDoubleClick));
            DataGridRow row    = sender as DataGridRow;
            Person      person = row.DataContext as Person;

            viewModel.ShowPerson(person);
        }