Skip to content

Instantly share code, notes, and snippets.

@amitkma
Created August 20, 2019 14:55
Show Gist options
  • Save amitkma/0736be925b5ca2d4745515b6dcd6fe77 to your computer and use it in GitHub Desktop.
Save amitkma/0736be925b5ca2d4745515b6dcd6fe77 to your computer and use it in GitHub Desktop.
public interface BookFinder {
List findAll();
}
class Library…
private BookFinder finder;
public Library() {
finder = new(RemoteBookFinder("https://oxfordlibrary.com/books"); // Can be a local database implementation as well.
}
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment