示例#1
0
 public AdminController(IAuthService authService, IHeatingService heatingService, IAdvertTypeService advertTypeService, IAdvertService advertService, IRealEstateService realEstateService, IAdminService adminService, IHttpContextAccessor httpContextAccessor)
 {
     _authService       = authService;
     _heatingService    = heatingService;
     _advertTypeService = advertTypeService;
     _advertService     = advertService;
     _realEstateService = realEstateService;
     _adminService      = adminService;
 }
 public AdvertController(IAdvertService advertService, IWebHostEnvironment hostEnvironment, IProvinceService provinceService, IAdvertTypeService advertTypeService, IHeatingService heatingService, INeighborhoodService neighborhoodService, IDistrictService districtService, IPlaceService placeService)
 {
     _advertService       = advertService;
     _hostEnvironment     = hostEnvironment;
     _provinceService     = provinceService;
     _advertTypeService   = advertTypeService;
     _heatingService      = heatingService;
     _neighborhoodService = neighborhoodService;
     _districtService     = districtService;
     _placeService        = placeService;
 }
示例#3
0
 public RealEstateController(IAuthService authService, IRealEstateService realEstateService, IDistrictService districtService, IPlaceService placeService, INeighborhoodService neighborhoodService, IAdvertTypeService advertTypeService, IHeatingService heatingService, IWebHostEnvironment hostEnvironment, IProvinceService provinceService, IAdvertService advertService, IPhotoService photoService)
 {
     _authService         = authService;
     _realEstateService   = realEstateService;
     _districtService     = districtService;
     _placeService        = placeService;
     _neighborhoodService = neighborhoodService;
     _advertTypeService   = advertTypeService;
     _heatingService      = heatingService;
     _hostEnvironment     = hostEnvironment;
     _provinceService     = provinceService;
     _advertService       = advertService;
     _photoService        = photoService;
 }
 public HeatingController(IHeatingService heatingService)
 {
     _heatingService = heatingService;
 }