(bookId , title , isbn , description , publisher , author , pages)
| 1 | exports.Book = class Book { |
| 2 | |
| 3 | constructor(bookId , title , isbn , description , publisher , author , pages){ |
| 4 | this.bookId = bookId; |
| 5 | this.title = title; |
| 6 | this.isbn = isbn; |
| 7 | this.description = description; |
| 8 | this.publisher = publisher; |
| 9 | this.author = author; |
| 10 | this.pages = pages; |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected