Example #1
0
 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)
 {
 }
Example #2
0
 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;
 }
Example #3
0
 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)
 {
 }
Example #4
0
 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;
 }