Table of Contents

Class EarningsEntry

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

Represents an element of an employee's pay.

public class EarningsEntry : IEarningsEntry
Inheritance
EarningsEntry
Implements
Inherited Members

Properties

EarningsDetails

Gets the type of deduction.

public IEarningsDetails EarningsDetails { get; init; }

Property Value

IEarningsDetails

FixedAmount

Gets the fixed amount of the earnings, if that is specified in place of quantity and value per unit. Used for absolute amounts.

public decimal? FixedAmount { get; init; }

Property Value

decimal?

QuantityInUnits

Gets the quantity of this earnings entry that when multiplied by the ValuePerUnit gives the total earnings.

public decimal? QuantityInUnits { get; init; }

Property Value

decimal?

TotalEarnings

Gets the total earnings to be applied.

public decimal TotalEarnings { get; }

Property Value

decimal

ValuePerUnit

Gets the GBP value per unit that when multiplied by the QuantityInUnits gives the total earnings.

public decimal? ValuePerUnit { get; init; }

Property Value

decimal?