public CitiesService(SkyHighDbContext dbContext) { this.dbContext = dbContext; }
public AirportsService(SkyHighDbContext dbContext, ICitiesService citiesService, IMapper mapper) { this.dbContext = dbContext; this.citiesService = citiesService; this.mapper = mapper; }
public FlightsService(SkyHighDbContext dbContext, IMapper mapper) { this.dbContext = dbContext; this.mapper = mapper; }
public ReservationsService(SkyHighDbContext dbContext, IMapper mapper) { this.dbContext = dbContext; this.mapper = mapper; }