InvoiceHelperCreateInvoice Method (Guid, Guid, Guid, String, Decimal, String, String) |
Creates a new invoice.
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 Invoice CreateInvoice(
Guid resellerId,
Guid customerId,
Guid accountId,
string currencyCode,
decimal penaltyRate,
string tax1Name,
string tax2Name
)
Public Shared Function CreateInvoice (
resellerId As Guid,
customerId As Guid,
accountId As Guid,
currencyCode As String,
penaltyRate As Decimal,
tax1Name As String,
tax2Name As String
) As Invoice
public:
static Invoice^ CreateInvoice(
Guid resellerId,
Guid customerId,
Guid accountId,
String^ currencyCode,
Decimal penaltyRate,
String^ tax1Name,
String^ tax2Name
)
static member CreateInvoice :
resellerId : Guid *
customerId : Guid *
accountId : Guid *
currencyCode : string *
penaltyRate : decimal *
tax1Name : string *
tax2Name : string -> Invoice
Parameters
- resellerId
- Type: SystemGuid
Reseller Id. - customerId
- Type: SystemGuid
Customer Id. - accountId
- Type: SystemGuid
Account Id. - currencyCode
- Type: SystemString
Currency code. - penaltyRate
- Type: SystemDecimal
Penalty rate. - tax1Name
- Type: SystemString
Tax 1 name. - tax2Name
- Type: SystemString
Tax 2 name.
Return Value
Type:
InvoiceCreated invoice.
See Also