public Airport(IAircraftService aircraftService, ICrewingService crewingService, IFlightOperationsService flightOperationsService) { AircraftService = aircraftService; CrewingService = crewingService; FlightOperationsService = flightOperationsService; }
public StewardessesController(ICrewingService service) { this.service = service; }
public PilotsController(IMapper mapper, ICrewingService service) { this.mapper = mapper; this.service = service; }
public PilotsController(ICrewingService service) { this.service = service; }
public AiroportService(IAircraftService aircraftService, ICrewingService crewingService, IFlightOperationsService flightOperationsService) : base(aircraftService, crewingService, flightOperationsService) { ticketPriceDelta = ticketPriceBase / 100 * 48 + priceDeltaConnst; }
public CrewsController(IMapper mapper, ICrewingService service) { this.mapper = mapper; this.service = service; outsourceCrewsUri = @"http://5b128555d50a5c0014ef1204.mockapi.io/crew"; }
public StewardessesController(IMapper mapper, ICrewingService service) { this.mapper = mapper; this.service = service; }
public AiroportService(IAircraftService aircraftService, ICrewingService crewingService, IFlightOperationsService flightOperationsService) : base(aircraftService, crewingService, flightOperationsService) { }