Table of Contents

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

bool

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

decimal?

PostGraduateLoanDeduction

Gets the post-graduate loan deduction applied. amounts.

decimal PostGraduateLoanDeduction { get; }

Property Value

decimal

StudentLoanDeduction

Gets the student loan deduction applied (excluding post-grad loan deductions). amounts.

decimal StudentLoanDeduction { get; }

Property Value

decimal

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

decimal?

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

StudentLoanType?

TotalDeduction

Gets the total deduction to be made, the sum of any student and post-graduate loan deduction amounts.

decimal TotalDeduction { get; }

Property Value

decimal