Table of Contents

Interface IEmployment

Namespace
Payetools.Payroll.Model
Assembly
Payetools.Payroll.dll

Interface that represents an employee's employment for payroll purposes. The PayrollId provides a handle to the employee that this employment refers to.

public interface IEmployment

Properties

DefaultPensionContributionLevels

Gets the default pension contributions to apply in each pay period, unless overridden by employee or employer instruction for that pay period.

IPensionContributionLevels DefaultPensionContributionLevels { get; }

Property Value

IPensionContributionLevels

DirectorsNiCalculationMethod

Gets the method for calculating National Insurance contributions. Applicable only for directors; null otherwise.

DirectorsNiCalculationMethod? DirectorsNiCalculationMethod { get; }

Property Value

DirectorsNiCalculationMethod?

EmploymentEndDate

Gets the employee's official employment termination date, i.e., their last working day. Null if the employee is still employed.

DateOnly? EmploymentEndDate { get; }

Property Value

DateOnly?

EmploymentStartDate

Gets the employee's official employment start date.

DateOnly EmploymentStartDate { get; }

Property Value

DateOnly

IsDirector

Gets a value indicating whether the employee is a company director.

bool IsDirector { get; }

Property Value

bool

NiCategory

Gets the employee's NI category.

NiCategory NiCategory { get; }

Property Value

NiCategory

NormalHoursWorkedBand

Gets the normal hours worked by the employee in one of several bands established by HMRC.

NormalHoursWorkedBand NormalHoursWorkedBand { get; }

Property Value

NormalHoursWorkedBand

PayrollHistoryYtd

Gets the key figures from the employee's payroll history for the tax year to date.

ref IEmployeePayrollHistoryYtd PayrollHistoryYtd { get; }

Property Value

IEmployeePayrollHistoryYtd

PayrollId

Gets the employee's payroll ID, as reported to HMRC. Sometimes known as "works number".

PayrollId PayrollId { get; }

Property Value

PayrollId

PayrolledBenefits

Gets the list of payrolled benefits that apply to this employment.

ImmutableArray<IPayrolledBenefit> PayrolledBenefits { get; }

Property Value

ImmutableArray<IPayrolledBenefit>

PensionScheme

Gets the pension scheme that the employee is a member of. Null if they are not a member of any scheme.

IPensionScheme? PensionScheme { get; }

Property Value

IPensionScheme

PrimaryPayStructure

Gets the employee's primary pay structure.

IEmployeePayStructure PrimaryPayStructure { get; }

Property Value

IEmployeePayStructure

RecurringDeductions

Gets the list of recurring deductions for an employee.

ImmutableArray<IRecurringDeduction> RecurringDeductions { get; }

Property Value

ImmutableArray<IRecurringDeduction>

RecurringEarnings

Gets the list of recurring earnings elements for an employee.

ImmutableArray<IRecurringEarnings> RecurringEarnings { get; }

Property Value

ImmutableArray<IRecurringEarnings>

StudentLoanInfo

Gets the employee's current student loan status.

StudentLoanInfo? StudentLoanInfo { get; }

Property Value

StudentLoanInfo?

TaxCode

Gets the employee's tax code.

TaxCode TaxCode { get; }

Property Value

TaxCode