Subversion Repositories SmartDukaan

Rev

Rev 1967 | Rev 2033 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1967 Rev 1990
Line 209... Line 209...
209
	/**
209
	/**
210
	* All category related functions
210
	* All category related functions
211
	*/
211
	*/
212
	bool addCategory(1:Category category),
212
	bool addCategory(1:Category category),
213
	Category getCategory(1:i64 id),
213
	Category getCategory(1:i64 id),
214
	list<Category> getAllCategories()
214
	list<Category> getAllCategories(),
-
 
215
	
-
 
216
	/**
-
 
217
	Returns the list of vendor pricing information of an item.
-
 
218
	Raises an exception if item not found corresponding to itemId
-
 
219
	*/
-
 
220
	list<VendorItemPricing> getAllItemPricing(1:i64 itemId) throws (1:InventoryServiceException cex),
-
 
221
	
-
 
222
	
-
 
223
	/**
-
 
224
	Updates Vendor item pricing.
-
 
225
	Raises an exception if either the item or vendor can't be found corresponding to their ids.
-
 
226
	Raises an exception if no pricing exists for vendor-item mapping.
-
 
227
	*/
-
 
228
	void updateVendorItemPricing(1:VendorItemPricing vendorItemPricing) throws (1:InventoryServiceException cex),
215
	
229
	
216
}
230
}
217
 
231