Class Employment
Represents an employee's employment for payroll purposes.
public record Employment : IEmployment, IEquatable<Employment>
- Inheritance
-
Employment
- Implements
- Inherited Members
Constructors
Employment(in IEmployeePayrollHistoryYtd)
Initialises a new instance of Employment.
public Employment(in IEmployeePayrollHistoryYtd payrollHistoryYtd)
Parameters
payrollHistoryYtd
IEmployeePayrollHistoryYtdEmployee's year-to-date payroll history.
Properties
DefaultPensionContributionLevels
Gets the default pension contributions to apply in each pay period, unless overridden by employee or employer instruction for that pay period.
public IPensionContributionLevels DefaultPensionContributionLevels { get; init; }
Property Value
DirectorsNiCalculationMethod
Gets the method for calculating National Insurance contributions. Applicable only for directors; null otherwise.
public DirectorsNiCalculationMethod? DirectorsNiCalculationMethod { get; init; }
Property Value
EmploymentEndDate
Gets the employee's official employment termination date, i.e., their last working day. Null if the employee is still employed.
public DateOnly? EmploymentEndDate { get; init; }
Property Value
EmploymentStartDate
Gets the employee's official employment start date.
public DateOnly EmploymentStartDate { get; init; }
Property Value
IsDirector
Gets a value indicating whether the employee is a company director.
public bool IsDirector { get; init; }
Property Value
NiCategory
Gets the employee's NI category.
public NiCategory NiCategory { get; init; }
Property Value
NormalHoursWorkedBand
Gets the normal hours worked by the employee in one of several bands established by HMRC.
public NormalHoursWorkedBand NormalHoursWorkedBand { get; }
Property Value
PayrollHistoryYtd
Gets the key figures from the employee's payroll history for the tax year to date.
public ref IEmployeePayrollHistoryYtd PayrollHistoryYtd { get; }
Property Value
PayrollId
Gets the employee's payroll ID, as reported to HMRC. Sometimes known as "works number".
public PayrollId PayrollId { get; init; }
Property Value
PayrolledBenefits
Gets the list of payrolled benefits that apply to this employment.
public ImmutableArray<IPayrolledBenefit> PayrolledBenefits { get; init; }
Property Value
PensionScheme
Gets the pension scheme that the employee is a member of. Null if they are not a member of any scheme.
public IPensionScheme? PensionScheme { get; init; }
Property Value
PrimaryPayStructure
Gets the employee's primary pay structure.
public IEmployeePayStructure PrimaryPayStructure { get; init; }
Property Value
RecurringDeductions
Gets the list of recurring deductions for an employee.
public ImmutableArray<IRecurringDeduction> RecurringDeductions { get; init; }
Property Value
RecurringEarnings
Gets the list of recurring earnings elements for an employee.
public ImmutableArray<IRecurringEarnings> RecurringEarnings { get; init; }
Property Value
StudentLoanInfo
Gets the employee's current student loan status.
public StudentLoanInfo? StudentLoanInfo { get; init; }
Property Value
TaxCode
Gets the employee's tax code.
public TaxCode TaxCode { get; init; }