private void __SearchStudies_AddSeriesToLocalMediaBurning(object sender, ProcessSeriesEventArgs e)
 {
     try
     {
         __LocalMediaCreationController.AddSeriesToBurningManager(e.Study, e.Series);
     }
     catch (Exception exception)
     {
         ThreadSafeMessager.ShowError(exception.Message);
     }
 }
        void __SearchStudies_LoadSeries(object sender, ProcessSeriesEventArgs e)
        {
            try
            {
                PopulateState(e.Study, e.Series);

                LoadSeriesInViewer(e.Study.PatientID,
                                   e.Study.StudyInstanceUID,
                                   e.Series.SeriesInstanceUID,
                                   ConfigurationData.ClientBrowsingMode);
            }
            catch (Exception exception)
            {
                ThreadSafeMessager.ShowError(exception.Message);
            }
        }