Example #1
0
 public VehicleService(IMapper mapper, RentCarWebContext context, IRentalEventService rentalEventService, IUserRentalService userRental)
 {
     _mapper             = mapper;
     _context            = context;
     _rentalEventService = rentalEventService;
     _userRentalService  = userRental;
 }
 public RentalEventController(IRentalEventService rentalEventService)
 {
     _rentalEventService = rentalEventService;
 }