- This would be a personal library
- The library class should be able to contain Book objects?
- Each Book object should have at least the following properties:
- A Title
- An Author
- A unique ID that would be used to distinguish the Book object from other Book objects
- Genre
- The library books should be organized into collections based on genre, format, type, e.t.
- A user should be able to add a new book to the library
- A user should be able to search for a book using the following query:
- Title
- Author
- Genre
- ID
- A user should be able to sort his/her books based on:
- Title
- Author
- Genre
- A user should be able to delete a book using:
- Title
- Author
- Genre
- ID