C# Class pcAmerica.DesktopPOS.API.Client.InventoryAPI

显示文件 Open project: pcAmerica/CRE-RPE-Client-API-Library Class Usage Examples

Public Methods

Method Description
GetIndividualModifiers ( Context context, string itemNumber ) : List

Retrieves the individual modifiers associated with the specified item (modifiers that are not in groups)

GetItem ( Context context, string itemNumber ) : InventoryItem

Retrieves information about a specific item, including nested modifier groups and modifiers

GetItemList ( ) : List

Retrieves a list of all inventory items

GetItemListExtended ( Context context ) : List

Retrieves more properties of an item than GetItemList()

GetModiferGroupsForItem ( Context context, string itemNumber ) : List

Retrieves the modifier groups associated with the specified item

GetModifierItemsForModifierGroup ( Context context, string itemNumber ) : List

Retrieves the individual modifiers associated with the specified Modifier Group

Method Details

GetIndividualModifiers() public method

Retrieves the individual modifiers associated with the specified item (modifiers that are not in groups)
public GetIndividualModifiers ( Context context, string itemNumber ) : List
context Context The store id, station id, and cashier id the information should be restricted to.
itemNumber string The item number to retrieve info for
return List

GetItem() public method

Retrieves information about a specific item, including nested modifier groups and modifiers
public GetItem ( Context context, string itemNumber ) : InventoryItem
context Context The store id, station id, and cashier id the information should be restricted to.
itemNumber string The item number to retrieve info for
return InventoryItem

GetItemList() public method

Retrieves a list of all inventory items
public GetItemList ( ) : List
return List

GetItemListExtended() public method

Retrieves more properties of an item than GetItemList()
public GetItemListExtended ( Context context ) : List
context Context
return List

GetModiferGroupsForItem() public method

Retrieves the modifier groups associated with the specified item
public GetModiferGroupsForItem ( Context context, string itemNumber ) : List
context Context The store id, station id, and cashier id the information should be restricted to.
itemNumber string The item number to retrieve info for
return List

GetModifierItemsForModifierGroup() public method

Retrieves the individual modifiers associated with the specified Modifier Group
public GetModifierItemsForModifierGroup ( Context context, string itemNumber ) : List
context Context The store id, station id, and cashier id the information should be restricted to.
itemNumber string The item number to retrieve info for
return List