Class TaxBandwidthEntry
- Namespace
- Payetools.IncomeTax.ReferenceData
- Assembly
- Payetools.IncomeTax.dll
Represents a single tax bandwidth entry for a full tax year. For example, in the UK for 2021-2022, the starter rate of tax for Scottish taxpayers was 19%, from zero taxable earnings up to £2,097. This information constitutes a single TaxBandwidthEntry.
public record TaxBandwidthEntry : IEquatable<TaxBandwidthEntry>
- Inheritance
-
TaxBandwidthEntry
- Implements
- Derived
- Inherited Members
Constructors
TaxBandwidthEntry(string, decimal, decimal?, bool, TaxBandwidthEntry?)
Initialises a new instance of TaxBandwidthEntry with the supplied parameters.
public TaxBandwidthEntry(string bandDescription, decimal taxBandRate, decimal? taxBandTo, bool isTopRate, TaxBandwidthEntry? entryBelow)
Parameters
bandDescription
stringDescriptive text associated with this TaxBandwidthEntry.
taxBandRate
decimalApplicable tax rate for this TaxBandwidthEntry.
taxBandTo
decimal?Upper threshold for this TaxBandwidthEntry.
isTopRate
boolTrue if this is the top TaxBandwidthEntry for the tax regime in question.
entryBelow
TaxBandwidthEntryTaxBandwidthEntry immediately below this TaxBandwidthEntry, if applicable; null otherwise.
Properties
BandWidthEntryBelow
Gets the TaxBandwidthEntry that is immediately below this TaxBandwidthEntry, or null if this is the lowest TaxBandwidthEntry for this tax regime.
public TaxBandwidthEntry? BandWidthEntryBelow { get; }
Property Value
Bandwidth
Gets the bandwidth of this TaxBandwidthEntry, i.e., the upper threshold less any lower threshold.
public decimal Bandwidth { get; }
Property Value
CumulativeBandwidth
Gets or sets the cumulative bandwidth of this TaxBandwidthEntry, i.e., the sum of this bandwidth and all bandwidths below.
public decimal CumulativeBandwidth { get; protected set; }
Property Value
CumulativeTax
Gets or sets the tax due in a single tax year for this TaxBandwidthEntry and all bandwidths below, assuming they are all fully used.
public decimal CumulativeTax { get; protected set; }
Property Value
Description
Gets the descriptive text associated with this TaxBandwidthEntry.
public string Description { get; }
Property Value
IsTopBand
Gets a value indicating whether this TaxBandwidthEntry represents the top band of tax for this tax regime.
public bool IsTopBand { get; }
Property Value
Rate
Gets the applicable tax rate for this TaxBandwidthEntry.
public decimal Rate { get; }
Property Value
TaxForBand
Gets or sets the tax due in a single tax year for just this TaxBandwidthEntry if it is fully used.
public decimal TaxForBand { get; protected set; }