public PopulationService(
     IInternalDataCachePopulationService internalDataCachePopulationService,
     IExternalDataCachePopulationService referenceDataCachePopulationService,
     IFundingContextPopulationService fundingContextPopulationService,
     IFileDataCachePopulationService fileDataCachePopulationService)
 {
     _internalDataCachePopulationService  = internalDataCachePopulationService;
     _referenceDataCachePopulationService = referenceDataCachePopulationService;
     _fundingContextPopulationService     = fundingContextPopulationService;
     _fileDataCachePopulationService      = fileDataCachePopulationService;
 }
 public PreValidationPopulationService(
     IMessageCachePopulationService messageCachePopulationService,
     IFileDataCachePopulationService fileDataCachePopulationService,
     IInternalDataCachePopulationService internalDataCachePopulationService,
     IExternalDataCachePopulationService externalDataCachePopulationService)
 {
     _messageCachePopulationService      = messageCachePopulationService;
     _fileDataCachePopulationService     = fileDataCachePopulationService;
     _internalDataCachePopulationService = internalDataCachePopulationService;
     _externalDataCachePopulationService = externalDataCachePopulationService;
 }
Esempio n. 3
0
 private PreValidationPopulationService NewService(
     IMessageCachePopulationService messageCachePopulationService           = null,
     IFileDataCachePopulationService fileDataCachePopulationService         = null,
     IInternalDataCachePopulationService internalDataCachePopulationService = null,
     IExternalDataCachePopulationService externalDataCachePopulationService = null)
 {
     return(new PreValidationPopulationService(
                messageCachePopulationService,
                fileDataCachePopulationService,
                internalDataCachePopulationService,
                externalDataCachePopulationService));
 }
Esempio n. 4
0
 private PopulationService NewService(IInternalDataCachePopulationService internalDataCachePopulationService, IExternalDataCachePopulationService externalDataCachePopulationService = null, IFundingContextPopulationService fundingContextPopulationService = null, IFileDataCachePopulationService fileDataCachePopulationService = null)
 {
     return(new PopulationService(internalDataCachePopulationService, externalDataCachePopulationService, fundingContextPopulationService, fileDataCachePopulationService));
 }