private void listToys(Shelf <Toy> shelf)
 {
     shelf.printList();
 }
 private void listBooks(Shelf <Book> shelf)
 {
     shelf.printList();
 }