//
        // Delete stored checkins
        //

        private void DeleteStoredCheckins_Click(object sender, RoutedEventArgs e)
        {
            if (DatabaseUtility.ClearCheckinTable() == true)
            {
                dgCheckins.DataContext = DatabaseUtility.SelectDownloadedCheckins();
                ShowSuccessStatus($"Dowloaded Checkins have been cleared from the local database");
            }
            else
            {
                ShowFailStatus($"There was a problem when attempting to clear the downloaded checkins from the local datbase");
            }
        }