public static RoomBooking RoomChange(int id) { return(RoomBookingDAO.RoomChange(id)); }
public static IEnumerable <RoomBooking> GetRB(int id) { return(RoomBookingDAO.GetRB(id)); }
public static bool UpdateRB(RoomBooking rb, string reason) { return(RoomBookingDAO.UpdateRB(rb, reason)); }
public static bool CreateRB(RoomBooking rb) { return(RoomBookingDAO.CreateRB(rb)); }