public interface ItemListDao
| Modifier and Type | Method and Description |
|---|---|
int |
countItemLists() |
void |
delete(ItemList itemList)
Delete an item list in the database
|
ItemList |
findById(int id)
Retrieve an item list from the database
|
java.util.List<ItemList> |
getAll()
Retrieves items lists from the database
|
void |
insertAll(ItemList... itemLists)
Insert one or more item list in the database
|
void |
update(ItemList itemList)
Update an item list in the database
|
java.util.List<ItemList> getAll()
ItemList findById(int id)
id - the id of the item listint countItemLists()
void insertAll(ItemList... itemLists)
itemLists - void update(ItemList itemList)
itemList - void delete(ItemList itemList)
itemList -