Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="QuantityModel" /> class.
 /// </summary>
 /// <param name="template">The template.</param>
 public QuantityModel(QuantityModel template) : base(template)
 {
 }
Exemple #2
0
 /// <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();
 }