public RealEstatesController( IRealEstateTypeServices realEstateTypeService, IHeatingSystemServices heatingSystemservices, IBuildingTypeServices buildingTypeServices, ICitiesServices citiesServices, IRealEstateServices realEstateServices, INeighbourhoodServices neighbourhoodServices, IOfferServices offerServices, IMapper mapper) { this.realEstateTypeService = realEstateTypeService; this.heatingSystemservices = heatingSystemservices; this.buildingTypeServices = buildingTypeServices; this.citiesServices = citiesServices; this.realEstateServices = realEstateServices; this.neighbourhoodServices = neighbourhoodServices; this.offerServices = offerServices; this.mapper = mapper; }
public RealEstateServices(HomeHunterDbContext context, IRealEstateTypeServices realEstateTypeServices, ICitiesServices citiesServices, INeighbourhoodServices neighbourhoodServices, IAddressServices addressServices, IVillageServices villageServices, IBuildingTypeServices buildingTypeServices, IHeatingSystemServices heatingSystemServices, IMapper mapper) { this.context = context; this.realEstateTypeServices = realEstateTypeServices; this.citiesServices = citiesServices; this.neighbourhoodServices = neighbourhoodServices; this.addressServices = addressServices; this.villageServices = villageServices; this.buildingTypeServices = buildingTypeServices; this.heatingSystemServices = heatingSystemServices; this.mapper = mapper; }
public RealEstateTypeController(IRealEstateTypeServices services) { _services = services; }