public bool DeleteBooking(int id) { bool respose = bookingDL.DeleteBooking(id); if (respose != false) { return(true); } else { return(false); } }