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