public CountriesAppService(IAddressExcelExporter addressExcelExporter,
                            IRepository <Country> countryRepository, IRepository <Lookup> lookupRepository)
 {
     _addressExcelExporter = addressExcelExporter;
     _countryRepository    = countryRepository;
     _lookupRepository     = lookupRepository;
 }
Beispiel #2
0
 public RegionsAppService(IRepository <Region> regionRepository, IAddressExcelExporter addressExcelExporter,
                          IRepository <Country> countryRepository)
 {
     _regionRepository     = regionRepository;
     _addressExcelExporter = addressExcelExporter;
     _countryRepository    = countryRepository;
 }
 public CitiesAppService(IRepository <Region> regionRepository, IRepository <City> cityRepository, IAddressExcelExporter addressExcelExporter)
 {
     _regionRepository     = regionRepository;
     _cityRepository       = cityRepository;
     _addressExcelExporter = addressExcelExporter;
 }