Exemple #1
0
 public bool DeleteBookingMealPlan(int BookingId)
 {
     try
     {
         if (bookingHelper == null)
         {
             bookingHelper = new BookingHelper();
         }
         return(bookingHelper.DeleteBookingMealPlan(BookingId));
     }
     catch (Exception exp)
     {
         throw exp;
     }
 }