Exemple #1
0
 public CountryRegionService(
     ILogger <ICountryRegionRepository> logger,
     ICountryRegionRepository countryRegionRepository,
     IApiCountryRegionRequestModelValidator countryRegionModelValidator,
     IBOLCountryRegionMapper bolcountryRegionMapper,
     IDALCountryRegionMapper dalcountryRegionMapper,
     IBOLStateProvinceMapper bolStateProvinceMapper,
     IDALStateProvinceMapper dalStateProvinceMapper)
     : base(logger,
            countryRegionRepository,
            countryRegionModelValidator,
            bolcountryRegionMapper,
            dalcountryRegionMapper,
            bolStateProvinceMapper,
            dalStateProvinceMapper)
 {
 }
 public AbstractCountryRegionService(
     ILogger logger,
     ICountryRegionRepository countryRegionRepository,
     IApiCountryRegionRequestModelValidator countryRegionModelValidator,
     IBOLCountryRegionMapper bolCountryRegionMapper,
     IDALCountryRegionMapper dalCountryRegionMapper,
     IBOLStateProvinceMapper bolStateProvinceMapper,
     IDALStateProvinceMapper dalStateProvinceMapper)
     : base()
 {
     this.countryRegionRepository     = countryRegionRepository;
     this.countryRegionModelValidator = countryRegionModelValidator;
     this.bolCountryRegionMapper      = bolCountryRegionMapper;
     this.dalCountryRegionMapper      = dalCountryRegionMapper;
     this.bolStateProvinceMapper      = bolStateProvinceMapper;
     this.dalStateProvinceMapper      = dalStateProvinceMapper;
     this.logger = logger;
 }