public CommonController(IProvinceService provinceService,
                         IDistrictService districtService,
                         ITownService townService,
                         IHighSchoolService highSchoolService,
                         IEthnicService ethnicService)
 {
     ProvinceService   = provinceService;
     DistrictService   = districtService;
     TownService       = townService;
     HighSchoolService = highSchoolService;
     EthnicService     = ethnicService;
 }
Example #2
0
 public NationalsController(IProvinceService provinceService, IEthnicService ethnicService, IReligionService religionService)
 {
     _provinceService = provinceService;
     _ethnicService   = ethnicService;
     _religionService = religionService;
 }