| Line 111... |
Line 111... |
| 111 |
Warehouse getWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
|
111 |
Warehouse getWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
|
| 112 |
list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:InventoryServiceException cex),
|
112 |
list<Warehouse> getAllWarehousesForItem(1:i64 item_id) throws (1:InventoryServiceException cex),
|
| 113 |
list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
|
113 |
list<Item> getAllItemsForWarehouse(1:i64 warehouse_id) throws (1:InventoryServiceException cex),
|
| 114 |
|
114 |
|
| 115 |
// for home page .... best deals, best sellers and latest arrivals
|
115 |
// for home page .... best deals, best sellers and latest arrivals
|
| - |
|
116 |
list<i64> getBestSellers(1:i64 beginIndex, 2:i64 totalItems) throws (1:InventoryServiceException cex),
|
| 116 |
list<i64> getBestSellers() throws (1:InventoryServiceException cex),
|
117 |
i64 totalBestSellers() throws (1:InventoryServiceException cex),
|
| - |
|
118 |
list<i64> getBestDeals(1:i64 beginIndex, 2:i64 totalItems) throws (1:InventoryServiceException cex),
|
| 117 |
list<i64> getBestDeals() throws (1:InventoryServiceException cex),
|
119 |
i64 totalBestDeals() throws (1:InventoryServiceException cex),
|
| - |
|
120 |
list<i64> getLatestArrivals(1:i64 beginIndex, 2:i64 totalItems) throws (1:InventoryServiceException cex),
|
| 118 |
list<i64> getLatestArrivals() throws (1:InventoryServiceException cex)
|
121 |
i64 totalLatestArrivals() throws (1:InventoryServiceException cex)
|
| 119 |
}
|
122 |
}
|
| 120 |
|
123 |
|