public PreValidationPopulationService(
     IMessageCachePopulationService messageCachePopulationService,
     IFileDataCachePopulationService fileDataCachePopulationService,
     IInternalDataCachePopulationService internalDataCachePopulationService,
     IExternalDataCachePopulationService externalDataCachePopulationService)
 {
     _messageCachePopulationService      = messageCachePopulationService;
     _fileDataCachePopulationService     = fileDataCachePopulationService;
     _internalDataCachePopulationService = internalDataCachePopulationService;
     _externalDataCachePopulationService = externalDataCachePopulationService;
 }
Ejemplo n.º 2
0
 private PreValidationPopulationService NewService(
     IMessageCachePopulationService messageCachePopulationService           = null,
     IFileDataCachePopulationService fileDataCachePopulationService         = null,
     IInternalDataCachePopulationService internalDataCachePopulationService = null,
     IExternalDataCachePopulationService externalDataCachePopulationService = null)
 {
     return(new PreValidationPopulationService(
                messageCachePopulationService,
                fileDataCachePopulationService,
                internalDataCachePopulationService,
                externalDataCachePopulationService));
 }