InvoiceHelperGetTaxRatesForItem Method |
Gets the tax rates.
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 void GetTaxRatesForItem(
Item item,
Guid customerId,
Guid resellerId,
string legalNumber,
IAtomiaBillingApi atomiaBillingApi,
out decimal tax1Rate,
out decimal tax2Rate
)
Public Shared Sub GetTaxRatesForItem (
item As Item,
customerId As Guid,
resellerId As Guid,
legalNumber As String,
atomiaBillingApi As IAtomiaBillingApi,
<OutAttribute> ByRef tax1Rate As Decimal,
<OutAttribute> ByRef tax2Rate As Decimal
)
public:
static void GetTaxRatesForItem(
Item^ item,
Guid customerId,
Guid resellerId,
String^ legalNumber,
IAtomiaBillingApi^ atomiaBillingApi,
[OutAttribute] Decimal% tax1Rate,
[OutAttribute] Decimal% tax2Rate
)
static member GetTaxRatesForItem :
item : Item *
customerId : Guid *
resellerId : Guid *
legalNumber : string *
atomiaBillingApi : IAtomiaBillingApi *
tax1Rate : decimal byref *
tax2Rate : decimal byref -> unit
Parameters
- item
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsItem
The item. - customerId
- Type: SystemGuid
The customer identifier. - resellerId
- Type: SystemGuid
The reseller identifier. - legalNumber
- Type: SystemString
The legal number. - atomiaBillingApi
- Type: Atomia.Billing.Core.SdkIAtomiaBillingApi
The atomia billing API. - tax1Rate
- Type: SystemDecimal
The tax1 rate. - tax2Rate
- Type: SystemDecimal
The tax2 rate.
See Also