コード例 #1
0
 // amends booking information held in the database
 public static void AmendBooking(int bookingRef, DateTime arrivalDate, DateTime departureDate,
                                 int chaletId, bool breakfast, bool eveningMeal)
 {
     DatabaseCalls.AmendBooking(bookingRef, arrivalDate, departureDate, chaletId, breakfast, eveningMeal);
 }