| |
---|
| | this.accountManager = accountManager; |
---|
| | } |
---|
| | |
---|
| | //本の一覧を返す |
---|
| | public HashMap<String, HashMap<Integer, Book>> getBooks() |
---|
| | public HashMap<Integer, Book> getBooks(String accountId) |
---|
| | { |
---|
| | return booksMap; |
---|
| | return booksMap.get(accountId); |
---|
| | } |
---|
| | |
---|
| | //本の新規作成 |
---|
| | public int createBook(String accountId, String title, String color, Boolean publicity) |
---|
| |
---|
| | |
|