Interface INumericValueResult
Numeric value result
Namespace: PayrollEngine.Client.Model
Assembly: PayrollEngine.Client.Core.dll
Syntax
public interface INumericValueResult
Properties
Value
The collector custom result value (immutable)
Declaration
decimal? Value { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal? |
Remarks
Nullable for tests
Methods
AlmostEqualValue(decimal?, int)
Test if value is almost equal value using a test precision
Declaration
bool AlmostEqualValue(decimal? compare, int precision)
Parameters
| Type | Name | Description |
|---|---|---|
| decimal? | compare | The value to compare |
| int | precision | The test precision |
Returns
| Type | Description |
|---|---|
| bool | True for almost equal values |