Пример #1
0
 public RealEstateController(IRealEstateServices realEstateServices,
                             IFileServices fileServices,
                             ICommonServices commonServices)
 {
     _realEstateServices = realEstateServices;
     _fileServices       = fileServices;
     _commonServices     = commonServices;
 }
Пример #2
0
 public ImageController(ICloudinaryService cloudinaryService,
                        IImageServices imageServices,
                        IRealEstateServices realEstateServices,
                        IMapper mapper)
 {
     this.cloudinaryService  = cloudinaryService;
     this.imageServices      = imageServices;
     this.realEstateServices = realEstateServices;
     this.mapper             = mapper;
 }
 public ImageServices(
     HomeHunterDbContext context,
     IMapper mapper,
     IRealEstateServices realEstateServices,
     IHostingEnvironment hostingEnvironment)
 {
     this.context            = context;
     this.mapper             = mapper;
     this.realEstateServices = realEstateServices;
     this.hostingEnvironment = hostingEnvironment;
 }
Пример #4
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;
 }
Пример #5
0
 public RealEstatesController(IRealEstateServices realEstateServices)
 {
     this.realEstateServices = realEstateServices;
 }
Пример #6
0
 public HomeController(ILogger <HomeController> logger, IRealEstateServices services)
 {
     _logger   = logger;
     _services = services;
 }
Пример #7
0
 public ImageServices(HomeHunterDbContext context, IMapper mapper, IRealEstateServices realEstateServices)
 {
     this.context            = context;
     this.mapper             = mapper;
     this.realEstateServices = realEstateServices;
 }
Пример #8
0
        //private readonly IAccountServices _accountServices;

        public RealEstateController(IRealEstateServices realEstateServices, IFileServices fileServices)
        {
            _realEstateServices = realEstateServices;
            _fileServices       = fileServices;
            //_accountServices = accountServices;
        }
 public RealEstatesController(IRealEstateServices realEstateServices)
 {
     this.realEstateServices = realEstateServices;
 }
Пример #10
0
 public RealEstateController(IRealEstateServices realEstateServices)
 {
     _realEstateServices = realEstateServices;
 }