public BookingController(IBookingProxy bookingService, BookingMapper mapper, IAccommodationProxy accommodationService, IHttpContextAccessor httpContextAccessor) { this.bookingService = bookingService; this.mapper = mapper; this.accommodationService = accommodationService; this.httpContextAccessor = httpContextAccessor; }
public BookingController(IBookingProxy bookingService, BookingMapper mapper, IAccommodationProxy accommodationService) { this.bookingService = bookingService; this.mapper = mapper; this.accommodationService = accommodationService; }
public CircuitBreakingBookingProxy(IBookingProxy innerProxy) { this.innerProxy = innerProxy; }