public static class FlightStatusExtension {
public static IQueryable<Flight> AsQueryable(
this FlightStatusService flightStatus ) {

FlightQueryProvider context =
	new FlightQueryProvider(flightStatus);
return new FlightQuery(context);
}
}
