ItemHelperGetItemsForCurrency Method |
List items which have defined prices for given currency and disjunctions/conjunctions condition. If currency is not set then list items regards to disjunctions/conjunctions condition only.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax public static SearchResult<Item> GetItemsForCurrency(
Account account,
int pageSize,
int rowStart,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjuctions,
Guid currencyId
)
Public Shared Function GetItemsForCurrency (
account As Account,
pageSize As Integer,
rowStart As Integer,
order As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchRestriction),
conjuctions As Dictionary(Of String, SearchRestriction),
currencyId As Guid
) As SearchResult(Of Item)
public:
static SearchResult<Item^>^ GetItemsForCurrency(
Account^ account,
int pageSize,
int rowStart,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjuctions,
Guid currencyId
)
static member GetItemsForCurrency :
account : Account *
pageSize : int *
rowStart : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjuctions : Dictionary<string, SearchRestriction> *
currencyId : Guid -> SearchResult<Item>
Parameters
- account
- Type: Account
The user account. - pageSize
- Type: SystemInt32
The page size. - rowStart
- Type: SystemInt32
The start row. - order
- Type: SystemString
The sorting order. - propertyNameToOrder
- Type: SystemString
The column by which items are sorted. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions conditions. - conjuctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjunctions conditions. - currencyId
- Type: SystemGuid
The currency Id.
Return Value
Type:
SearchResultItemList of items which satisfy conditions
See Also