Class GenericEarnings
Represents a generic pay component (e.g., salary, bonus, sick pay, etc.).
public class GenericEarnings : IEarningsDetails
- Inheritance
-
GenericEarnings
- Implements
- Inherited Members
Properties
Id
Gets or sets the unique ID for this pay component.
public Guid Id { get; set; }
Property Value
IsNetToGross
Gets or sets a value indicating whether this pay component refers to a net amount that should be "grossed up", ensuring the employee receives the net amount in their take-home pay.
public bool IsNetToGross { get; set; }
Property Value
IsPensionable
Gets or sets a value indicating whether this pay component should be included in the employee's pensionable salary.
public bool IsPensionable { get; set; }
Property Value
IsSubjectToNi
Gets or sets a value indicating whether this pay component is subject to National Insurance.
public bool IsSubjectToNi { get; set; }
Property Value
IsSubjectToTax
Gets or sets a value indicating whether this pay component is subject to tax.
public bool IsSubjectToTax { get; set; }
Property Value
IsTreatedAsOvertime
Gets or sets a value indicating whether this pay component should be treated as overtime for the purposes of average overtime calculations.
public bool IsTreatedAsOvertime { get; set; }
Property Value
Name
Gets or sets the full name of this pay component.
public string Name { get; set; }
Property Value
ShortName
Gets or sets the short name for this pay component.
public string ShortName { get; set; }
Property Value
Units
Gets or sets the units for this pay component, if applicable. Null if not applicable.
public PayRateUnits? Units { get; set; }