Class StudentLoanCalculator
- Namespace
- Payetools.StudentLoans
- Assembly
- Payetools.StudentLoans.dll
Represents a student loan calculator that implements IStudentLoanCalculator.
public class StudentLoanCalculator : IStudentLoanCalculator
- Inheritance
-
StudentLoanCalculator
- Implements
- Inherited Members
Constructors
StudentLoanCalculator(IStudentLoanThresholdSet, IStudentLoanRateSet)
Initialises a new instance of a StudentLoanCalculator with the supplied thresholds and rates. Note that supplied thresholds have been adjusted to correspond to the appropriate pay frequency for this calculator instance.
public StudentLoanCalculator(IStudentLoanThresholdSet thresholds, IStudentLoanRateSet rates)
Parameters
thresholds
IStudentLoanThresholdSetThresholds adjusted to match pay frequency for this calculator.
rates
IStudentLoanRateSetStudent and post-grad loan deduction rates.
Methods
Calculate(decimal, StudentLoanType?, bool, out IStudentLoanCalculationResult)
Calculates the necessary student loan deduction based on the input salary, the student loan type (if applicable) and indication of whether to apply post-graduate loan deductions.
public void Calculate(decimal grossSalary, StudentLoanType? studentLoanType, bool hasPostGradLoan, out IStudentLoanCalculationResult result)
Parameters
grossSalary
decimalGross salary.
studentLoanType
StudentLoanType?Optional student loan type. Null if no student loan applies.
hasPostGradLoan
boolTrue if post-graduate loan deductions should be applied; false otherwise.
result
IStudentLoanCalculationResultAn implementation of IStudentLoanCalculationResult containing the results of the calculation.