InvoiceHelperListUnpaidInvoices Method (Guid, DateTime, Int32, Int32, String, String, DictionaryString, SearchRestriction, DictionaryString, SearchRestriction) |
Lists unpaid invoices that should be payed before termination.
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<Invoice> ListUnpaidInvoices(
Guid customerId,
DateTime terminationDate,
int firstRow,
int pageSize,
string order,
string propertyNameToOrder,
Dictionary<string, SearchRestriction> disjunctions,
Dictionary<string, SearchRestriction> conjuctions
)
Public Shared Function ListUnpaidInvoices (
customerId As Guid,
terminationDate As DateTime,
firstRow 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 Invoice)
public:
static SearchResult<Invoice^>^ ListUnpaidInvoices(
Guid customerId,
DateTime terminationDate,
int firstRow,
int pageSize,
String^ order,
String^ propertyNameToOrder,
Dictionary<String^, SearchRestriction^>^ disjunctions,
Dictionary<String^, SearchRestriction^>^ conjuctions
)
static member ListUnpaidInvoices :
customerId : Guid *
terminationDate : DateTime *
firstRow : int *
pageSize : int *
order : string *
propertyNameToOrder : string *
disjunctions : Dictionary<string, SearchRestriction> *
conjuctions : Dictionary<string, SearchRestriction> -> SearchResult<Invoice>
Parameters
- customerId
- Type: SystemGuid
The customer id. - terminationDate
- Type: SystemDateTime
The termination date. - firstRow
- Type: SystemInt32
The first row. - pageSize
- Type: SystemInt32
The page size. - order
- Type: SystemString
The order (asc or dsc). - propertyNameToOrder
- Type: SystemString
The property name to order. - disjunctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The disjunctions. - conjuctions
- Type: System.Collections.GenericDictionaryString, SearchRestriction
The conjuctions.
Return Value
Type:
SearchResultInvoiceInvoices as search results.
See Also