private async Task ImportLabResults(
     PerformContext context,
     int runId,
     ImportResult importResult,
     List <Notification> savedNotifications)
 {
     try
     {
         await _specimenImportService.ImportReferenceLabResultsAsync(context, runId, savedNotifications, importResult);
     }
     catch (Exception e)
     {
         Log.Error(e, e.Message);
         await _logger.LogGroupWarning(context, runId, savedNotifications,
                                       "An error occurred while attempting to import the lab results for the group." +
                                       " Please contact your system administrator to fix this issue.");
     }
 }