Class DrugValue
- Namespace
- adas_core.Domain.Models.Observations
- Assembly
- adas-core.Domain.dll
Represents a value or data entry associated with a drug, such as dosage, concentration, or other pharmaceutical-related information.
public class DrugValue
- Inheritance
-
DrugValue
- Derived
- Inherited Members
- Extension Methods
Constructors
DrugValue()
public DrugValue()
DrugValue(PumpElement)
public DrugValue(PumpElement pumpElement)
Parameters
pumpElementPumpElement
Properties
CodingSystem
public string? CodingSystem { get; set; }
Property Value
Id
public string? Id { get; set; }
Property Value
Result
public char? Result { get; set; }
Property Value
- char?
Text
public string? Text { get; set; }
Property Value
Time
public DateTime? Time { get; set; }
Property Value
Units
public string? Units { get; set; }
Property Value
Methods
Copy(DrugValue)
Copies the values from the specified DrugValue instance into the current instance, replacing the existing Id, Text, Units, Time, CodingSystem, and Result properties.
public void Copy(DrugValue common)