Esempio n. 1
0
 public SeatMapService(IUnitOfWork unitOfWork,
                       ISeatMapRepository seatMapRepository, ISeatClassService seatClassService, IPlaneSeatClassService planeSeatClassService,
                       IPlaneService planeService, ITicketFlightService ticketFlightService) : base(unitOfWork)
 {
     this.SeatMapRepository     = seatMapRepository;
     this.SeatClassService      = seatClassService;
     this.PlaneSeatClassService = planeSeatClassService;
     this.PlaneService          = planeService;
     this.TicketFlightService   = ticketFlightService;
 }
Esempio n. 2
0
 public TicketController(IPassengerTypeService passengerTypeService, ITicketService ticketService,
                         IPassengerTicketService passengerTicketService, ITicketFlightService ticketFlightService,
                         ISeatMapService seatMapService, IAccountService accountService, IFlightService flightService,
                         IAirportService airportService)
 {
     this.PassengerTypeService   = passengerTypeService;
     this.TicketService          = ticketService;
     this.PassengerTicketService = passengerTicketService;
     this.TicketFlightService    = ticketFlightService;
     this.SeatMapService         = seatMapService;
     this.AccountService         = accountService;
     this.FlightService          = flightService;
     this.AirportService         = airportService;
 }
Esempio n. 3
0
 public PlaneController(IPlaneService planeService, ISeatMapService seatMapService, IAirportService airportService,
                        IPlaneSeatClassService planeSeatClassService, IPlaneAirportService planeAirportService, ITicketFlightService ticketFlightService,
                        IFlightService flightService)
 {
     this.PlaneService          = planeService;
     this.AirportService        = airportService;
     this.SeatMapService        = seatMapService;
     this.PlaneSeatClassService = planeSeatClassService;
     this.PlaneAirportService   = planeAirportService;
     this.TicketFlightService   = ticketFlightService;
     this.FlightService         = flightService;
 }