Beispiel #1
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A NCYear object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetValue(NCYear val)
 {
     SetField(CommonDTD.NCYEARGROUP, val);
 }
 ///<summary>Sets the value of the <c>&lt;NCYearGroup&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setNCYearGroup</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>NCYearGroup</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetNCYearGroup( NCYear Value )
 {
     RemoveChild( LearnerDTD.CURRENTSCHOOLENROLMENT_NCYEARGROUP);
     AddChild( LearnerDTD.CURRENTSCHOOLENROLMENT_NCYEARGROUP, new NCYearGroup( Value ) );
 }
Beispiel #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element</param>
 ///
 public NCYearGroup(NCYear value) : base(CommonDTD.NCYEARGROUP)
 {
     this.SetValue(value);
 }
 ///<summary>Adds the value of the <c>&lt;NCYearGroup&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setNCYearGroup</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddNCYearGroup</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void AddNCYearGroup(NCYear Value)
 {
     AddChild(CommonDTD.NCYEARGROUPLIST_NCYEARGROUP, new NCYearGroup(Value));
 }
Beispiel #5
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element</param>
 ///
 public NCYearGroup( NCYear value )
     : base(CommonDTD.NCYEARGROUP)
 {
     this.SetValue( value );
 }
Beispiel #6
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A NCYear object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetValue( NCYear val )
 {
     SetField( CommonDTD.NCYEARGROUP, val );
 }
 ///<summary>Sets the value of the <c>&lt;NCYearGroupActual&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;NCYearGroup&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setNCYearGroupActual</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>NCYearGroupActual</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetNCYearGroupActual( NCYear Value )
 {
     RemoveChild( LearnerDTD.LEARNERSCHOOLENROLMENT_NCYEARGROUPACTUAL);
     AddChild( LearnerDTD.LEARNERSCHOOLENROLMENT_NCYEARGROUPACTUAL, new NCYearGroup( Value ) );
 }