TaxProfileHelperSearch Method |
Gets the tax profiles.
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<TaxProfile> Search(
int rowStart,
int pageSize,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjuctions
)
Public Shared Function Search (
rowStart As Integer,
pageSize As Integer,
order As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchRestriction),
conjuctions As Dictionary(Of String, SearchRestriction)
) As SearchResult(Of TaxProfile)
public:
static SearchResult<TaxProfile^>^ Search(
int rowStart,
int pageSize,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjuctions
)
static member Search :
rowStart : int *
pageSize : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjuctions : Dictionary<string, SearchRestriction> -> SearchResult<TaxProfile>
Parameters
- rowStart
- Type: SystemInt32
The start row. - pageSize
- Type: SystemInt32
Size of the page. - order
- Type: SystemString
The order. - propertyNameToOrder
- Type: SystemString
The name name to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions. - conjuctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjuctions.
Return Value
Type:
SearchResultTaxProfileFiltered items.
See Also