IShopHelperSearchShops Method |
Searches the shops.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax SearchResult<Shop> SearchShops(
int firstRow,
int pageSize,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjuctions,
Guid resellerId,
bool detailsOnly
)
Function SearchShops (
firstRow As Integer,
pageSize As Integer,
order As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchRestriction),
conjuctions As Dictionary(Of String, SearchRestriction),
resellerId As Guid,
detailsOnly As Boolean
) As SearchResult(Of Shop)
SearchResult<Shop^>^ SearchShops(
int firstRow,
int pageSize,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjuctions,
Guid resellerId,
bool detailsOnly
)
abstract SearchShops :
firstRow : int *
pageSize : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjuctions : Dictionary<string, SearchRestriction> *
resellerId : Guid *
detailsOnly : bool -> SearchResult<Shop>
Parameters
- firstRow
- Type: SystemInt32
The first row. - pageSize
- Type: SystemInt32
Size of the page. - order
- Type: SystemString
The order. - propertyNameToOrder
- Type: SystemString
The property name to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions. - conjuctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjuctions. - resellerId
- Type: SystemGuid
The reseller identifier. - detailsOnly
- Type: SystemBoolean
If set to true will return shop details only, without items.
Return Value
Type:
SearchResultShopList of shops.
See Also