Interface IStudentLoanCalculationResult
- Namespace
- Payetools.StudentLoans.Model
- Assembly
- Payetools.StudentLoans.dll
Interface that types implement to provide access to the results of a student loan calculation.
public interface IStudentLoanCalculationResult
Properties
HasPostGradLoan
Gets a value indicating whether post-graduate loan deductions were applied.
bool HasPostGradLoan { get; }
Property Value
PostGradLoanThresholdUsed
Gets the post-graduate loan threshold for the period used in calculating student loan (but not student loan) deductions.
decimal? PostGradLoanThresholdUsed { get; }
Property Value
PostGraduateLoanDeduction
Gets the post-graduate loan deduction applied. amounts.
decimal PostGraduateLoanDeduction { get; }
Property Value
StudentLoanDeduction
Gets the student loan deduction applied (excluding post-grad loan deductions). amounts.
decimal StudentLoanDeduction { get; }
Property Value
StudentLoanThresholdUsed
Gets the student loan threshold for the period used in calculating student loan (but not post-graduate loan) deductions.
decimal? StudentLoanThresholdUsed { get; }
Property Value
StudentLoanType
Gets the optional student loan type. Null if no student loan applied. (Post-graduate loans are treated separately via HasPostGradLoan.
StudentLoanType? StudentLoanType { get; }
Property Value
TotalDeduction
Gets the total deduction to be made, the sum of any student and post-graduate loan deduction amounts.
decimal TotalDeduction { get; }