Interface IEmployeePayStructure
Interface that represents an employee's pay structure.
public interface IEmployeePayStructure
- Extension Methods
Properties
Id
Gets the unique ID for this pay structure.
Guid Id { get; }
Property Value
PayComponent
Gets the pay component that this pay structure is based on.
IEarningsDetails PayComponent { get; }
Property Value
PayRate
Gets the rate of pay. The type of this rate of pay is given by PayRateType.
decimal PayRate { get; }
Property Value
PayRateType
Gets the type of pay that PayRate represents.
PayRateType PayRateType { get; }