PrepaidCreditHelperGetPrepaidCreditRecords Method |
Gets the prepaid credit records joined with the invoices.
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<PrepaidCredit> GetPrepaidCreditRecords(
int pageSize,
int rowStart,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjuctions
)
Public Shared Function GetPrepaidCreditRecords (
pageSize As Integer,
rowStart As Integer,
order As String,
propertyNameToOrder As String,
disjunctions As Dictionary(Of String, SearchRestriction),
conjuctions As Dictionary(Of String, SearchRestriction)
) As SearchResult(Of PrepaidCredit)
public:
static SearchResult<PrepaidCredit^>^ GetPrepaidCreditRecords(
int pageSize,
int rowStart,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjuctions
)
static member GetPrepaidCreditRecords :
pageSize : int *
rowStart : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjuctions : Dictionary<string, SearchRestriction> -> SearchResult<PrepaidCredit>
Parameters
- pageSize
- Type: SystemInt32
Size of the page. - rowStart
- Type: SystemInt32
The row start. - order
- Type: SystemString
The order. - propertyNameToOrder
- Type: SystemString
The name of the property to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions. - conjuctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjuctions.
Return Value
Type:
SearchResultPrepaidCreditFiltered prepaid credit records.
See Also