public async Task <IEnumerable <ApprenticeshipDfcReportDocument> > GetDfcReports() { try { var client = _cosmosDbHelper.GetClient(); var result = await _cosmosDbHelper.GetAllDfcMigrationReports(client, _settings.ApprenticeshipDfcReportCollectionId); return(result); } catch (Exception e) { Console.WriteLine(e); throw; } }