Beispiel #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="type">"TG" has special meaning – it means this is the bottom of the "tree" and the output is a TeachingGroup. "YR" means a year (or "principal division") within the school (7,8,9,etc).</param>
 ///
 public Output( OutputType type )
     : base(LearningDTD.OUTPUT)
 {
     this.SetType( type );
 }
Beispiel #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Type&gt;</c> element.
 /// </summary>
 /// <param name="val">A OutputType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: ""TG" has special meaning – it means this is the bottom of the "tree" and the output is a TeachingGroup. "YR" means a year (or "principal division") within the school (7,8,9,etc)."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetType( OutputType val )
 {
     SetField( LearningDTD.OUTPUT_TYPE, val );
 }