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