Class Employer
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
stringLegal name of the business, including any legally required suffix, e.g., Ltd, LLP, etc.
knownAsName
stringName 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
HmrcAccountsOfficeReferenceEmployer'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
HmrcPayeReference
Gets the employer's HMRC PAYE reference, if known.
public HmrcPayeReference? HmrcPayeReference { get; init; }
Property Value
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
OfficialName
Gets the legal name of the business, including any legally required suffix, e.g., Ltd, LLP, etc.
public string? OfficialName { get; init; }