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