Exemple #1
0
 public static RoomBooking RoomChange(int id)
 {
     return(RoomBookingDAO.RoomChange(id));
 }
Exemple #2
0
 public static IEnumerable <RoomBooking> GetRB(int id)
 {
     return(RoomBookingDAO.GetRB(id));
 }
Exemple #3
0
 public static bool UpdateRB(RoomBooking rb, string reason)
 {
     return(RoomBookingDAO.UpdateRB(rb, reason));
 }
Exemple #4
0
 public static bool CreateRB(RoomBooking rb)
 {
     return(RoomBookingDAO.CreateRB(rb));
 }