Interface IStudentLoanCalculatorFactory
- Namespace
- Payetools.StudentLoans
- Assembly
- Payetools.StudentLoans.dll
Interface that represents factories that can generate IStudentLoanCalculator implementations.
public interface IStudentLoanCalculatorFactory
Methods
GetCalculator(PayDate)
Gets a new IStudentLoanCalculator based on the specified pay date and number of tax periods. The pay date is provided in order to determine which set of levels to use, noting that these may (but rarely do) change in-year.
IStudentLoanCalculator GetCalculator(PayDate payDate)
Parameters
payDate
PayDateApplicable pay date.
Returns
- IStudentLoanCalculator
A new calculator instance.
Remarks
The supplied PayDate is also used to calculate the appropriate period threshold to apply, from the PayFrequency property, e.g., weekly, monthly, etc.