ADD file via upload

main
pcor8zk92 6 months ago
parent cf7fa96863
commit e453f564f0

@ -0,0 +1,45 @@
package mvc2;
/**
* odel ā<EFBFBD>?
* @author The Administrator
* @version 1.0
* @created 26-10-2025 22:50:57
*/
class BookDAO {
/**
* ?
*/
private static List<Book> bookDatabase = new ArrayList<>();
public BookDAO(){
}
public void finalize() throws Throwable {
}
/**
*
* @param book
*/
void addBook(Book book){
}
public List<Book> findAllBooks(){
return null;
}
/**
* ID<EFBFBD>
* @return <EFBFBD>
*
* @param id ID
*/
Book findBook(int id){
return null;
}
}//end BookDAO
Loading…
Cancel
Save