Example #1
0
 public BookingController(IUnitOfWork unitOfWork, IMapperRegister mapper, IBookingService bookingService)
 {
     _UnitOfWork     = unitOfWork;
     _Mapper         = mapper;
     _BookingService = bookingService;
 }
Example #2
0
 public FlightController(IUnitOfWork unitOfWork, IMapperRegister mapper, IFlightService flightService)
 {
     _UnitOfWork    = unitOfWork;
     _Mapper        = mapper;
     _FlightService = flightService;
 }