Biblioteca Java - Blame information for rev 9
Subversion Repositories:
(root)/Spring/SpringWebMVC/InventoryHibernate/src/main/java/com/linkscreens/inventory/dao/InventoryDao.java
Rev | Author | Line No. | Line |
---|---|---|---|
9 | mihai | 1 | package com.linkscreens.inventory.dao; |
2 | |||
3 | import com.linkscreens.inventory.entity.FilterParameters; | ||
4 | import com.linkscreens.inventory.entity.InventoryItem; | ||
5 | |||
6 | import java.util.List; | ||
7 | |||
8 | /** | ||
9 | * | ||
10 | */ | ||
11 | public interface InventoryDao { | ||
12 | |||
13 | void addNewInventoryItem(InventoryItem item); | ||
14 | |||
15 | InventoryItem getItemById(Long itemId); | ||
16 | |||
17 | List<InventoryItem> getAllInventoryItems(); | ||
18 | |||
19 | List<InventoryItem> geFilteredInventoryItems(FilterParameters filter); | ||
20 | |||
21 | void updateInventoryItem(InventoryItem updatedItem); | ||
22 | |||
23 | void deleteItem(Long itemId); | ||
24 | } |