コード例 #1
0
ファイル: MyWC.cs プロジェクト: william-andrew/william-andrew
 public bool DeleteFlight(Transaction context, string flight)
 {
     return(Flights.Delete(context, RID.forFlight(flight)));
 }
コード例 #2
0
ファイル: MyWC.cs プロジェクト: william-andrew/william-andrew
 public bool DeleteSeats(Transaction context, String flight, int numSeats)
 {
     return(Flights.Delete(context, RID.forFlight(flight), numSeats));
 }