AccountsHelperListAccounts Method |
Lists the accounts.
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 List<Account> ListAccounts(
int firstRow,
int pageSize,
string sortOrder,
string propertyNameToOrder,
Dictionary<string, SearchingRestriction> disjunctions,
Dictionary<string, SearchingRestriction> conjunctions
)
Public Shared Function ListAccounts (
firstRow As Integer,
pageSize As Integer,
sortOrder As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchingRestriction),
conjunctions As Dictionary(Of String, SearchingRestriction)
) As List(Of Account)
public:
static List<Account^>^ ListAccounts(
int firstRow,
int pageSize,
String^ sortOrder,
String^ propertyNameToOrder,
Dictionary<String^, SearchingRestriction^>^ disjunctions,
Dictionary<String^, SearchingRestriction^>^ conjunctions
)
static member ListAccounts :
firstRow : int *
pageSize : int *
sortOrder : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchingRestriction> *
conjunctions : Dictionary<string, SearchingRestriction> -> List<Account>
Parameters
- firstRow
- Type: SystemInt32
The first row. - pageSize
- Type: SystemInt32
Size of the page. - sortOrder
- Type: SystemString
The sort order. - propertyNameToOrder
- Type: SystemString
The property name to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchingRestriction
The disjunctions. - conjunctions
- Type: System.Collections.GenericDictionaryString, SearchingRestriction
The conjunctions.
Return Value
Type:
ListAccountFiltered accounts.
See Also