Interface IVatPosition
- Namespace
- RetailForce.Fiscalisation.Model.Document
- Assembly
- RetailForce.Fiscalisation.Model.dll
Interface for all positions having vat.
public interface IVatPosition
Properties
AccountingIdentifier
An additional identifier for accounting purposes (accounting interface).
string AccountingIdentifier { get; set; }
Property Value
GrossValue
The gross value of the booking.
decimal GrossValue { get; set; }
Property Value
NetValue
The net value of the booking. If there is no Vat, or vat with 0 percent must be equal GrossValue;
decimal NetValue { get; set; }
Property Value
PositionNumber
The number of the position in the position sequence.
int PositionNumber { get; set; }
Property Value
TaxValue
The vat value of the booking.
decimal TaxValue { get; set; }
Property Value
VatIdentification
The value added tax for this position.
int VatIdentification { get; set; }
Property Value
VatPercent
The percentage of the vat
decimal VatPercent { get; set; }
Property Value
VatPercent2
The percentage 2 of the vat, optional
decimal? VatPercent2 { get; set; }