コード例 #1
0
 /**
  * Method initiaties the proess of updating booking status
  *
  * @param booking Booking model
  * @return result of updating
  */
 public bool updateAttendanceStatus(BookingModel booking)
 {
     if (Validator.validateBookingForUpdate(booking))
     {
         return(repo.updateBookingStatus(booking));
     }
     return(false);
 }