Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public RealEstateTypeController(IRealEstateTypeServices services)
 {
     _services = services;
 }