Class TestResult
- Namespace
- Skyware.Lis.EventsModel.Results
- Assembly
- Skyware.Lis.EventsModel.dll
Represent a result for single test (assay)
public class TestResult
- Inheritance
-
TestResult
- Inherited Members
Properties
FlagLevel
Flag, according to reference range (1-7, 10, 11).
public byte? FlagLevel { get; set; }
Property Value
- byte?
Remarks
1=ultra low, 2=very low, 3=low, 5=high, 6=very high, 7=ultra high, 10=star. 4=no flag. Null means the flag is not calculated.
ItemId
PK in iLab database.
public int? ItemId { get; set; }
Property Value
- int?
LocalResultTime
Local time of the result.
public DateTime LocalResultTime { get; }
Property Value
NumericPrefix
Optional, prefix such as ">", "<<", etc.
public string NumericPrefix { get; set; }
Property Value
NumericResult
Optional, decimal result.
public decimal? NumericResult { get; set; }
Property Value
Result
Result as text.
public string Result { get; set; }
Property Value
ResultTime
UTC date/time result has been obtained from the instrument.
public DateTime ResultTime { get; set; }
Property Value
Status
The new result states.
public ResultStatuses Status { get; set; }
Property Value
Test
Test
public Test Test { get; set; }