Skip to content

Instantly share code, notes, and snippets.

@renaro
Last active October 19, 2016 03:14
Show Gist options
  • Save renaro/40a61bf0933df881d37c7f349901df94 to your computer and use it in GitHub Desktop.
Save renaro/40a61bf0933df881d37c7f349901df94 to your computer and use it in GitHub Desktop.
public boolean scheduleRomanticDinner(RomanticDinnerRequest request){
boolean isTableAvailable = isTableAvailableAtTime(request.table(), request.time());
if(isTableAvailable){
server.confirmSchedule(request);
} else {
//whatever
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment