Advertisement
akosiraff

Download LibraryBook_CS

Sep 6th, 2015
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/librarybook_cs/
  3. Write a console application to meet the following requirements. Create a system for a simple library. The library has a name and a list of books. Each book has a title, author and an int as the id number. Define classes for both the library and the book. The library should have methods for adding a book to the library, to search for a book by title, to display information about all of the books and to delete a book (by title) from the library. The following conditions apply to the books in the library: 1. Each book’s name is unique. There are no duplicate titles. When adding a book, ensure that the title doesn’t already exist. If it does exist, don’t let the new book be added. 2. There is only one copy of each book in the library. 3. An author may have more than one book in the library. Complete the code in this incomplete client designed to test the classes and their functionality. You should not change any of the other code in main.
  4. Download: http://solutionzip.com/downloads/librarybook_cs/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement