/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">Code representing the relationship.</param> /// public Relationship( AU0609RelationshipToStudentType code ) : base(CommonDTD.RELATIONSHIP) { this.SetCode( code ); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A AU0609RelationshipToStudentType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Code representing the relationship."</para> /// <para>Version: 2.5</para> /// <para>Since: 2.3</para> /// </remarks> public void SetCode( AU0609RelationshipToStudentType val ) { SetField( CommonDTD.RELATIONSHIP_CODE, val ); }
/// <summary> /// Sets the value of the <c><Relationship></c> element. /// </summary> /// <param name="val">A AU0609RelationshipToStudentType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Defines the relationship of the contact to the student."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetRelationship( AU0609RelationshipToStudentType val ) { SetField( StudentDTD.STUDENTCONTACT_RELATIONSHIP, val ); }
///<summary>Sets the value of the <c><Relationship></c> element.</summary> /// <param name="Code">Code representing the relationship.</param> ///<remarks> /// <para>This form of <c>setRelationship</c> is provided as a convenience method /// that is functionally equivalent to the <c>Relationship</c></para> /// <para>Version: 2.5</para> /// <para>Since: 2.3</para> /// </remarks> public void SetRelationship( AU0609RelationshipToStudentType Code ) { RemoveChild( StudentDTD.STUDENTCONTACTRELATIONSHIP_RELATIONSHIP); AddChild( StudentDTD.STUDENTCONTACTRELATIONSHIP_RELATIONSHIP, new Relationship( Code ) ); }
/// <summary> /// Sets the value of the <c><Code></c> element. /// </summary> /// <param name="val">A AU0609RelationshipToStudentType object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "Code representing the relationship."</para> /// <para>Version: 2.6</para> /// <para>Since: 2.3</para> /// </remarks> public void SetCode(AU0609RelationshipToStudentType val) { SetField(CommonDTD.RELATIONSHIP_CODE, val); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="code">Code representing the relationship.</param> /// public Relationship(AU0609RelationshipToStudentType code) : base(CommonDTD.RELATIONSHIP) { this.SetCode(code); }