public DataEntityMapper(ILARSReferenceDataService larsReferenceDataService, IOrganisationReferenceDataService organisationReferenceDataService, IPostcodesReferenceDataService postcodesReferenceDataService, IFileDataService fileDataService)
 {
     _larsReferenceDataService         = larsReferenceDataService;
     _organisationReferenceDataService = organisationReferenceDataService;
     _postcodesReferenceDataService    = postcodesReferenceDataService;
     _fileDataService = fileDataService;
 }
Пример #2
0
 public DataEntityMapper(
     ILargeEmployersReferenceDataService largeEmployersReferenceDataService,
     ILARSReferenceDataService larsReferenceDataService,
     IOrganisationReferenceDataService organisationReferenceDataService,
     IPostcodesReferenceDataService postcodesReferenceDataService)
 {
     _largeEmployersReferenceDataService = largeEmployersReferenceDataService;
     _larsReferenceDataService           = larsReferenceDataService;
     _organisationReferenceDataService   = organisationReferenceDataService;
     _postcodesReferenceDataService      = postcodesReferenceDataService;
 }
Пример #3
0
 private DataEntityMapper NewService(
     ILargeEmployersReferenceDataService largeEmployersReferenceDataService = null,
     ILARSReferenceDataService larsReferenceDataService = null,
     IOrganisationReferenceDataService organisationReferenceDataService = null,
     IPostcodesReferenceDataService postcodesReferenceDataService       = null)
 {
     return(new DataEntityMapper(
                largeEmployersReferenceDataService,
                larsReferenceDataService,
                organisationReferenceDataService,
                postcodesReferenceDataService));
 }
 private PrevUKPRN_01Rule NewRule(IOrganisationReferenceDataService organisationReferenceDataService = null, IValidationErrorHandler validationErrorHandler = null)
 {
     return(new PrevUKPRN_01Rule(organisationReferenceDataService, validationErrorHandler));
 }
 public PrevUKPRN_01Rule(IOrganisationReferenceDataService organisationReferenceDataService, IValidationErrorHandler validationErrorHandler)
     : base(validationErrorHandler)
 {
     _organisationReferenceDataService = organisationReferenceDataService;
 }