*/
@Override
public Long book(String firstName, String lastName, String dateOfBirth, String roomType, String checkInDate, String checkOutDate)
{
Long referenceNumber = null;
HotelRoom room = validateParams(roomType, checkInDate, checkOutDate, firstName, lastName, dateOfBirth);
if(room != null && checkAvailability(room, checkInDate, checkOutDate))
{
referenceNumber = System.currentTimeMillis();