/// <summary> /// Initializes a new instance of the <see cref="QuantityModel" /> class. /// </summary> /// <param name="template">The template.</param> public QuantityModel(QuantityModel template) : base(template) { }
/// <summary> /// Initializes a new instance of the <see cref="ComponentModel" /> class. /// </summary> /// <param name="template">The template.</param> public ComponentModel(ComponentModel template) : base(template) { Code = new CodableConceptModel(); Interpretation = new CodableConceptModel(); Value = new QuantityModel(); }