Interface ITaxCalculator
Interface that represents a calculator for calculating income tax based on tax code, taxable income and tax paid to date. Access to tax calculators is through the TaxCalculatorFactory; in normal use, implementations of ITaxCalculator are not be created directly. An ITaxCalculator instance is specific to a given pay frequency and tax period, which corresponds to an instance of a given PayDate.
public interface ITaxCalculator
Properties
PayFrequency
Gets the pay frequency for this calculator.
PayFrequency PayFrequency { get; }
Property Value
TaxBandwidths
Gets the set of pro-rata tax bandwidths in use for a given tax year, tax regime and tax period.
TaxPeriodBandwidthSet TaxBandwidths { get; }
Property Value
TaxPeriod
Gets the relevant tax period for this calculator.
int TaxPeriod { get; }
Property Value
TaxPeriodCount
Gets the number of tax periods within a given tax year, based on the supplied pay frequency.
int TaxPeriodCount { get; }
Property Value
TaxYear
Gets the tax year that this calculator pertains to.
TaxYear TaxYear { get; }
Property Value
Methods
Calculate(decimal, decimal, TaxCode, decimal, decimal, decimal, out ITaxCalculationResult)
Calculates the tax due based on tax code, total taxable salary and total tax paid to date.
void Calculate(decimal totalTaxableSalaryInPeriod, decimal benefitsInKind, TaxCode taxCode, decimal taxableSalaryYearToDate, decimal taxPaidYearToDate, decimal taxUnpaidDueToRegulatoryLimit, out ITaxCalculationResult result)
Parameters
totalTaxableSalaryInPeriod
decimalTaxable pay in period (i.e., gross less pre-tax deductions but including benefits in kind).
benefitsInKind
decimalBenefits in kind element of the taxable pay for the period.
taxCode
TaxCodeIndividual's tax code.
taxableSalaryYearToDate
decimalTotal year to date taxable salary up to and including the end of the previous tax period.
taxPaidYearToDate
decimalTotal year to date tax paid up to and including the end of the previous tax period.
taxUnpaidDueToRegulatoryLimit
decimalAny tax outstanding due to the effect of the regulatory limit.
result
ITaxCalculationResultAn ITaxCalculationResult containing the tax now due plus related information from the tax calculation.