InvoiceHelperGetInvoicesWithDueDatePassed Method |
Gets the invoices with due date passed for numberOfDays.
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<Invoice> GetInvoicesWithDueDatePassed(
Guid customerId,
int numberOfDays,
InvoiceStatus[] allowedStates,
string[] notAllowedStates
)
Public Shared Function GetInvoicesWithDueDatePassed (
customerId As Guid,
numberOfDays As Integer,
allowedStates As InvoiceStatus(),
notAllowedStates As String()
) As List(Of Invoice)
public:
static List<Invoice^>^ GetInvoicesWithDueDatePassed(
Guid customerId,
int numberOfDays,
array<InvoiceStatus>^ allowedStates,
array<String^>^ notAllowedStates
)
static member GetInvoicesWithDueDatePassed :
customerId : Guid *
numberOfDays : int *
allowedStates : InvoiceStatus[] *
notAllowedStates : string[] -> List<Invoice>
Parameters
- customerId
- Type: SystemGuid
Invoice customer's id. - numberOfDays
- Type: SystemInt32
The number of days. - allowedStates
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsInvoiceStatus
Invoice allowed statuses. - notAllowedStates
- Type: SystemString
Invoice not allowed statuses.
Return Value
Type:
ListInvoiceList of invoices with due date passed for
numberOfDays.
See Also