Example #1
0
 public TicketsController(ITicketService ticketService, IBusTripService busTripService, IUserService userService, IMapper mapper)
 {
     _busTripService = busTripService;
     _ticketService  = ticketService;
     _userService    = userService;
     _mapper         = mapper;
 }
Example #2
0
 public BusTripsController(IBusTripService busTripService, IMapper mapper, ITicketService ticketService)
 {
     _busTripService = busTripService;
     _mapper         = mapper;
     _ticketService  = ticketService;
 }