Class PayrollId
Represents a payroll ID (also known as a "worker ID", "payroll number", "works number") as reported to HMRC.
public sealed record PayrollId : IEquatable<PayrollId>
- Inheritance
-
PayrollId
- Implements
- Inherited Members
Remarks
This type is meant to aid payroll ID changes. Further work required.
Constructors
PayrollId(string, bool, string?)
Initialises a new instance of PayrollId with the supplied value.
public PayrollId(string payrollId, bool isUpdate = false, string? previousPayrollId = null)
Parameters
payrollId
stringPayroll ID value.
isUpdate
boolTrue if this an update to a previously submitted payroll ID; false otherwise. Default is false.
previousPayrollId
stringIf
isUpdate
is set to true, then this parameter should be set to the previous payroll ID used.
Properties
IsUpdate
Gets a value indicating whether this payroll ID is an update to a previously submitted payroll ID.
public bool IsUpdate { get; }
Property Value
PreviousPayrollId
Gets the previous payroll ID, where applicable.
public string? PreviousPayrollId { get; }
Property Value
Methods
Parse(string)
Parses the supplied payroll ID. TBA.
public static PayrollId Parse(string value)
Parameters
value
stringValue to parse.
Returns
- PayrollId
Parsed value. TBA.
Operators
implicit operator string(PayrollId)
Operator for casting implicitly from a PayrollId instance to its string representation.
public static implicit operator string(PayrollId payrollId)
Parameters
payrollId
PayrollIdAn instance of PayrollId.
Returns
implicit operator PayrollId(string)
Operator for casting implicitly from a payroll ID string value to a PayrollId instance.
public static implicit operator PayrollId(string payrollId)
Parameters
payrollId
stringString representation of payroll ID.