public ApprenticeshipSearchServiceV3(
     IElasticsearchCustomClient elasticsearchCustomClient,
     IConfigurationSettings applicationSettings,
     IQueryHelper queryHelper,
     IApprenticeshipSearchResultsMapping resultItemMapper)
 {
     _elasticsearchCustomClient = elasticsearchCustomClient;
     _applicationSettings       = applicationSettings;
     _queryHelper      = queryHelper;
     _resultItemMapper = resultItemMapper;
 }
 public ApprenticeshipsSearchApiProvider(ISearchV3Api apprenticeshipProgrammeApiClient, IApprenticeshipSearchResultsMapping apprenticeshipSearchResultsMapping)
 {
     _apprenticeshipProgrammeApiClient   = apprenticeshipProgrammeApiClient;
     _apprenticeshipSearchResultsMapping = apprenticeshipSearchResultsMapping;
 }
 public void Init()
 {
     _sut = new ApprenticeshipSearchResultsMapping();
 }