コード例 #1
0
 public LinkedList <Category> getCategriesBookDoesntbelongTo(Book book)
 {
     return(database.getAllCategoriesMinusBookCategories(book));
 }
コード例 #2
0
 public LinkedList <Author> getAllAuthorsMinuBookAuthors(Book book)
 {
     return(database.getAllAuthorsMinuBookAuthors(book));
 }