Table of Contents

Class Employer

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

Represents an employer for payroll purposes.

public record Employer : IEmployer, IEquatable<Employer>
Inheritance
Employer
Implements
Inherited Members

Constructors

Employer(string?, string, HmrcPayeReference?, HmrcAccountsOfficeReference?)

Initialises a new Employer with the supplied parameters.

public Employer(string? officialName, string knownAsName, HmrcPayeReference? hmrcPayeReference = null, HmrcAccountsOfficeReference? accountsOfficeReference = null)

Parameters

officialName string

Legal name of the business, including any legally required suffix, e.g., Ltd, LLP, etc.

knownAsName string

Name that the business is known by, omitting any official suffix, e.g., Ltd, LLP, etc.

hmrcPayeReference HmrcPayeReference?

Employer's HMRC PAYE reference, if known. Optional.

accountsOfficeReference HmrcAccountsOfficeReference

Employer's HMRC Accounts Office reference, if known. Optional.

Properties

AccountsOfficeReference

Gets the employer's HMRC Accounts Office reference, if known.

public HmrcAccountsOfficeReference? AccountsOfficeReference { get; init; }

Property Value

HmrcAccountsOfficeReference

HmrcPayeReference

Gets the employer's HMRC PAYE reference, if known.

public HmrcPayeReference? HmrcPayeReference { get; init; }

Property Value

HmrcPayeReference?

KnownAsName

Gets the name that the business is known by, omitting any official suffix, e.g., Ltd, LLP, etc.

public string KnownAsName { get; init; }

Property Value

string

OfficialName

Gets the legal name of the business, including any legally required suffix, e.g., Ltd, LLP, etc.

public string? OfficialName { get; init; }

Property Value

string