Esempio n. 1
0
 public RatingServices(IBookingServices bookingServices, IRentalOfferServices rentalOfferServices, CarpoolingContext context, IMapper mapper)
 {
     _context           = context;
     _mapper            = mapper;
     bookingRequest     = bookingServices;
     rentalOfferRequest = rentalOfferServices;
 }
Esempio n. 2
0
 public RentalOfferController(IRentalOfferServices rentalOfferServices)
 {
     RentalRequest = rentalOfferServices;
 }