public PopulationService(
     IInternalDataCachePopulationService internalDataCachePopulationService,
     IExternalDataCachePopulationService referenceDataCachePopulationService,
     IFundingContextPopulationService fundingContextPopulationService,
     IFileDataCachePopulationService fileDataCachePopulationService)
 {
     _internalDataCachePopulationService  = internalDataCachePopulationService;
     _referenceDataCachePopulationService = referenceDataCachePopulationService;
     _fundingContextPopulationService     = fundingContextPopulationService;
     _fileDataCachePopulationService      = fileDataCachePopulationService;
 }
Пример #2
0
 private PopulationService NewService(IInternalDataCachePopulationService internalDataCachePopulationService, IExternalDataCachePopulationService externalDataCachePopulationService = null, IFundingContextPopulationService fundingContextPopulationService = null, IFileDataCachePopulationService fileDataCachePopulationService = null)
 {
     return(new PopulationService(internalDataCachePopulationService, externalDataCachePopulationService, fundingContextPopulationService, fileDataCachePopulationService));
 }