Exemple #1
0
 /// <summary>
 /// Creates a CR instance with the specified <paramref name="name"/> and <paramref name="value"/>
 /// </summary>
 /// <param name="name">The name of the qualifier</param>
 /// <param name="value">The value of the qualifier</param>
 public CR(CV <T> name, CD <T> value)
 {
     this.Name  = name;
     this.Value = value;
 }
Exemple #2
0
 /// <summary>
 /// Creates a new instance of the CO class with the specified <paramref name="code"/>
 /// </summary>
 /// <remarks>
 /// Recommended constructor call when using only R1 formatter
 /// </remarks>
 /// <param name="code">A code value that defines the CO ordinal</param>
 public CO(CD <String> code) : this(null, code)
 {
 }
Exemple #3
0
 /// <summary>
 /// Creates a new instance of the CO class with the specified <paramref name="code"/> and <paramref name="value"/>
 /// </summary>
 /// <param name="value">The initial value of the CO instance</param>
 /// <param name="code">A code value that defines the CO ordinal</param>
 public CO(Decimal?value, CD <String> code) : base(value)
 {
     this.Code = code;
 }
Exemple #4
0
 /// <summary>
 /// Creates a new instance of SC.
 /// </summary>
 /// <param name="data">The data to create SC with.</param>
 /// <param name="language">The language of the data.</param>
 /// <param name="code">The desired code for the SC</param>
 public SC(string data, string language, CD <String> code)
     : this(data, language)
 {
     this.Code = code;
 }