public CountryRegionCurrencyService(
     ILogger <ICountryRegionCurrencyRepository> logger,
     ICountryRegionCurrencyRepository countryRegionCurrencyRepository,
     IApiCountryRegionCurrencyRequestModelValidator countryRegionCurrencyModelValidator,
     IBOLCountryRegionCurrencyMapper bolcountryRegionCurrencyMapper,
     IDALCountryRegionCurrencyMapper dalcountryRegionCurrencyMapper
     )
     : base(logger,
            countryRegionCurrencyRepository,
            countryRegionCurrencyModelValidator,
            bolcountryRegionCurrencyMapper,
            dalcountryRegionCurrencyMapper)
 {
 }
 public AbstractCountryRegionCurrencyService(
     ILogger logger,
     ICountryRegionCurrencyRepository countryRegionCurrencyRepository,
     IApiCountryRegionCurrencyRequestModelValidator countryRegionCurrencyModelValidator,
     IBOLCountryRegionCurrencyMapper bolCountryRegionCurrencyMapper,
     IDALCountryRegionCurrencyMapper dalCountryRegionCurrencyMapper)
     : base()
 {
     this.countryRegionCurrencyRepository     = countryRegionCurrencyRepository;
     this.countryRegionCurrencyModelValidator = countryRegionCurrencyModelValidator;
     this.bolCountryRegionCurrencyMapper      = bolCountryRegionCurrencyMapper;
     this.dalCountryRegionCurrencyMapper      = dalCountryRegionCurrencyMapper;
     this.logger = logger;
 }