Table of Contents

Class TaxCalculatorFactory

Namespace
Payetools.IncomeTax
Assembly
Payetools.IncomeTax.dll

Factory to generate ITaxCalculator implementations that are for a given pay date and specific tax regime.

public class TaxCalculatorFactory : ITaxCalculatorFactory
Inheritance
TaxCalculatorFactory
Implements
Inherited Members

Constructors

TaxCalculatorFactory(ITaxReferenceDataProvider)

Initialises a new instance of TaxCalculatorFactory using the supplied tax band provider.

public TaxCalculatorFactory(ITaxReferenceDataProvider taxBandProvider)

Parameters

taxBandProvider ITaxReferenceDataProvider

Tax band provider for providing access to tax bands for given tax years.

Methods

GetCalculator(CountriesForTaxPurposes, PayDate)

Gets an instance of an ITaxCalculator for the specified tax regime and pay date.

public ITaxCalculator GetCalculator(CountriesForTaxPurposes applicableCountries, PayDate payDate)

Parameters

applicableCountries CountriesForTaxPurposes

Applicable tax regime.

payDate PayDate

Pay date.

Returns

ITaxCalculator

Instance of ITaxCalculator for the specified tax regime and pay date.

Exceptions

InvalidReferenceDataException

Thrown if it was not possible to find a tax bandwidth set for the specified tax regime and tax year combination.

GetCalculator(CountriesForTaxPurposes, TaxYear, PayFrequency, int)

Gets an instance of an ITaxCalculator for the specified tax regime, tax year, tax period and pay frequency.

public ITaxCalculator GetCalculator(CountriesForTaxPurposes applicableCountries, TaxYear taxYear, PayFrequency payFrequency, int taxPeriod)

Parameters

applicableCountries CountriesForTaxPurposes

Applicable tax regime.

taxYear TaxYear

Relevant tax year.

payFrequency PayFrequency

Applicable pay frequency.

taxPeriod int

Applicable tax period.

Returns

ITaxCalculator

Instance of ITaxCalculator for the specified tax regime, tax year and period and pay frequency.

Exceptions

InvalidReferenceDataException

Thrown if it was not possible to find a tax bandwidth set for the specified tax regime and tax year combination.