Пример #1
0
 public UserLocatablesTipsController(ILocatableService locatableService, ITipService tipService, IUserProfileService userProfileService, IMapper mapper)
 {
     _locatableService   = locatableService;
     _tipService         = tipService;
     _userProfileService = userProfileService;
     _mapper             = mapper;
 }
 public UserLocatableReviewsController(IReviewService reviewService, ILocatableService locatableService, IUserProfileService userProfileService, IMapper mapper)
 {
     _reviewService      = reviewService;
     _locatableService   = locatableService;
     _userProfileService = userProfileService;
     _mapper             = mapper;
 }
 public LocatableReviewsController(IReviewService reviewService, ILocatableService locatableService, IMapper mapper)
 {
     _reviewService    = reviewService;
     _locatableService = locatableService;
     _mapper           = mapper;
 }
Пример #4
0
 public FavouritesController(ILocatableService locatableService, IFavouriteService favouriteService, IMapper mapper)
 {
     _locatableService = locatableService;
     _favouriteService = favouriteService;
     _mapper           = mapper;
 }
 public LocatablesController(ILocatableService locatableService, IMapper mapper)
 {
     _mapper           = mapper;
     _locatableService = locatableService;
 }
 public LocatableTipsController(ILocatableService locatableService, ITipService tipService, IMapper mapper)
 {
     _locatableService = locatableService;
     _tipService       = tipService;
     _mapper           = mapper;
 }