Class TaxCalculatorFactory
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
ITaxReferenceDataProviderTax 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
CountriesForTaxPurposesApplicable tax regime.
payDate
PayDatePay 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
CountriesForTaxPurposesApplicable tax regime.
taxYear
TaxYearRelevant tax year.
payFrequency
PayFrequencyApplicable pay frequency.
taxPeriod
intApplicable 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.