BooksService

public final class BooksService

Service for the books table in the database

Author

Francesco Masala

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
public final Id<Books> create(Books user)

Create a book in the database

Link copied to clipboard
public final Unit deleteByISBN(Long isbn)

Erase a book instance

Link copied to clipboard
public final List<Books> findAll()

Get all the books from the database

Link copied to clipboard
public final List<Books> findByCategory(String category)

Get a specific books from the database based on category

Link copied to clipboard
public final Books findByISBN(Long isbn)

Get a specific book from the database

Link copied to clipboard
public final List<Books> findByName(String name)

Get a specific books from the database based on name

Link copied to clipboard
public final BooksData findBySpecificISBN(Long isbn)

Get a specific book from the database

Link copied to clipboard
public final List<Books> findByYear(Integer year)

Get a specific books from the database based on study year

Link copied to clipboard
public final String obtainProperty(String property)