Esempio n. 1
0
 public SupplementaryDataService(
     IEsfRepository repository,
     ISourceFileModelMapper fileModelMapper,
     ISupplementaryDataModelMapper supplementaryDataMapper)
 {
     _repository              = repository;
     _fileModelMapper         = fileModelMapper;
     _supplementaryDataMapper = supplementaryDataMapper;
 }
 public ValidationController(
     ILooseValidatorCommand looseValidatorCommand,
     IList <IValidatorCommand> validatorCommands,
     IPopulationService populationService,
     ISupplementaryDataModelMapper mapper)
 {
     _looseValidatorCommand = looseValidatorCommand;
     _validatorCommands     = validatorCommands.OrderBy(c => c.Priority).ToList();
     _populationService     = populationService;
     _mapper = mapper;
 }