Пример #1
0
 public BookingsListController(IBookingsService bookingsService,
                               IPropertyImagesService propertyImagesService,
                               ICitiesService citiesService,
                               UserResolverService userResolverService,
                               IPropertiesService propertiesService)
 {
     _bookingsService       = bookingsService;
     _propertyImagesService = propertyImagesService;
     _citiesService         = citiesService;
     _userResolverService   = userResolverService;
     _propertiesService     = propertiesService;
 }
Пример #2
0
 public CreatePropertyImageRangeHandler(IMapper mapper, IPropertyImagesService propertyImagesService)
 {
     _mapper = mapper;
     _propertyImagesService = propertyImagesService;
 }
Пример #3
0
 public DeletePropertyImageHandler(IPropertyImagesService propertyImagesService)
 {
     _propertyImagesService = propertyImagesService;
 }
Пример #4
0
 public GetAllPropertyImagesHandler(IMapper mapper, IPropertyImagesService propertyImagesService)
 {
     _mapper = mapper;
     _propertyImagesService = propertyImagesService;
 }