Example #1
0
 ///<summary>Sets the value of the <c>&lt;AgencyReporting&gt;</c> element.</summary>
 /// <param name="SifRefObject">The name of the SIF object to which the GUID relates.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;AgencyReporting&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setAgencyReporting</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>AgencyReporting</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetAgencyReporting(AgencyReportingObject SifRefObject, string Value)
 {
     RemoveChild(StudentDTD.DISCIPLINEINCIDENT_AGENCYREPORTING);
     AddChild(StudentDTD.DISCIPLINEINCIDENT_AGENCYREPORTING, new AgencyReporting(SifRefObject, Value));
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="sifRefObject">The name of the SIF object to which the GUID relates.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;AgencyReporting&amp;gt; element</param>
 ///
 public AgencyReporting( AgencyReportingObject sifRefObject, string value )
     : base(StudentDTD.AGENCYREPORTING)
 {
     this.SetSIF_RefObject( sifRefObject );
     this.Value = value;
 }
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A AgencyReportingObject object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The name of the SIF object to which the GUID relates."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetSIF_RefObject( AgencyReportingObject val )
 {
     SetField( StudentDTD.AGENCYREPORTING_SIF_REFOBJECT, val );
 }
Example #4
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="sifRefObject">The name of the SIF object to which the GUID relates.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;AgencyReporting&amp;gt; element</param>
 ///
 public AgencyReporting(AgencyReportingObject sifRefObject, string value) : base(StudentDTD.AGENCYREPORTING)
 {
     this.SetSIF_RefObject(sifRefObject);
     this.Value = value;
 }
Example #5
0
 /// <summary>
 /// Sets the value of the <c>SIF_RefObject</c> attribute.
 /// </summary>
 /// <param name="val">A AgencyReportingObject object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The name of the SIF object to which the GUID relates."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetSIF_RefObject(AgencyReportingObject val)
 {
     SetField(StudentDTD.AGENCYREPORTING_SIF_REFOBJECT, val);
 }
 ///<summary>Sets the value of the <c>&lt;AgencyReporting&gt;</c> element.</summary>
 /// <param name="SifRefObject">The name of the SIF object to which the GUID relates.</param>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;AgencyReporting&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setAgencyReporting</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>AgencyReporting</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetAgencyReporting( AgencyReportingObject SifRefObject, string Value )
 {
     RemoveChild( StudentDTD.DISCIPLINEINCIDENT_AGENCYREPORTING);
     AddChild( StudentDTD.DISCIPLINEINCIDENT_AGENCYREPORTING, new AgencyReporting( SifRefObject, Value ) );
 }