public CountryService( ILogger <ICountryRepository> logger, ICountryRepository countryRepository, IApiCountryRequestModelValidator countryModelValidator, IBOLCountryMapper bolcountryMapper, IDALCountryMapper dalcountryMapper, IBOLProvinceMapper bolProvinceMapper, IDALProvinceMapper dalProvinceMapper) : base(logger, countryRepository, countryModelValidator, bolcountryMapper, dalcountryMapper, bolProvinceMapper, dalProvinceMapper) { }
public AbstractCountryService( ILogger logger, ICountryRepository countryRepository, IApiCountryRequestModelValidator countryModelValidator, IBOLCountryMapper bolCountryMapper, IDALCountryMapper dalCountryMapper, IBOLProvinceMapper bolProvinceMapper, IDALProvinceMapper dalProvinceMapper) : base() { this.CountryRepository = countryRepository; this.CountryModelValidator = countryModelValidator; this.BolCountryMapper = bolCountryMapper; this.DalCountryMapper = dalCountryMapper; this.BolProvinceMapper = bolProvinceMapper; this.DalProvinceMapper = dalProvinceMapper; this.logger = logger; }
public CountryService( ILogger <ICountryRepository> logger, ICountryRepository countryRepository, IApiCountryRequestModelValidator countryModelValidator, IBOLCountryMapper bolcountryMapper, IDALCountryMapper dalcountryMapper, IBOLCountryRequirementMapper bolCountryRequirementMapper, IDALCountryRequirementMapper dalCountryRequirementMapper, IBOLDestinationMapper bolDestinationMapper, IDALDestinationMapper dalDestinationMapper) : base(logger, countryRepository, countryModelValidator, bolcountryMapper, dalcountryMapper, bolCountryRequirementMapper, dalCountryRequirementMapper, bolDestinationMapper, dalDestinationMapper) { }
public AbstractCountryService( ILogger logger, ICountryRepository countryRepository, IApiCountryRequestModelValidator countryModelValidator, IBOLCountryMapper bolCountryMapper, IDALCountryMapper dalCountryMapper, IBOLCountryRequirementMapper bolCountryRequirementMapper, IDALCountryRequirementMapper dalCountryRequirementMapper, IBOLDestinationMapper bolDestinationMapper, IDALDestinationMapper dalDestinationMapper) : base() { this.countryRepository = countryRepository; this.countryModelValidator = countryModelValidator; this.bolCountryMapper = bolCountryMapper; this.dalCountryMapper = dalCountryMapper; this.bolCountryRequirementMapper = bolCountryRequirementMapper; this.dalCountryRequirementMapper = dalCountryRequirementMapper; this.bolDestinationMapper = bolDestinationMapper; this.dalDestinationMapper = dalDestinationMapper; this.logger = logger; }