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;
 }
Esempio n. 2
0
 public SepetimController(IMenusService menuservice, ICommentService commentservice, IMenuNamesService menunameservice, ICategoryService categoryservice, IProductService productservice, INeighborhoodService neighborhoodservice, ICompaniesService companieservice, ICountyService countyservice, ISliderService sliderService, ICityService cityservice)
 {
     this._sliderService       = sliderService;
     this._cityservice         = cityservice;
     this._countyservice       = countyservice;
     this._companieservice     = companieservice;
     this._neighborhoodservice = neighborhoodservice;
     this._productservice      = productservice;
     this._categoryservice     = categoryservice;
     this._menunameservice     = menunameservice;
     this._commentservice      = commentservice;
     this._menuservice         = menuservice;
     _cacheProvider            = new CacheProvider();
 }
Esempio n. 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 NeighborhoodsController(INeighborhoodService neighborhoodService)
 {
     _neighborhoodService = neighborhoodService;
 }
Esempio n. 5
0
 public NeighborhoodController(INeighborhoodService neighborhoodService) => this.neighborhoodService = neighborhoodService;