public bool DeleteFlight(Transaction context, string flight) { return(Flights.Delete(context, RID.forFlight(flight))); }
public bool DeleteSeats(Transaction context, String flight, int numSeats) { return(Flights.Delete(context, RID.forFlight(flight), numSeats)); }