public bool DeleteBooking(int BookingId) { try { if (bookingHelper == null) { bookingHelper = new BookingHelper(); } return(bookingHelper.DeleteBooking(BookingId)); } catch (Exception exp) { throw exp; } }