Beispiel #1
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="studentPersonalRefId">GUID that identifies the student that this element refers to.</param>
 ///
 public Students( StudentPersonalRefId studentPersonalRefId )
     : base(CommonDTD.STUDENTS)
 {
     this.StudentPersonalRefId = studentPersonalRefId;
 }
Beispiel #2
0
 ///<summary>Sets the value of the <c>&lt;Students&gt;</c> element.</summary>
 /// <param name="StudentPersonalRefId">GUID that identifies the student that this element refers to.</param>
 ///<remarks>
 /// <para>This form of <c>setStudents</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>Students</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetStudents( StudentPersonalRefId StudentPersonalRefId )
 {
     RemoveChild( InstrDTD.ACTIVITY_STUDENTS);
     AddChild( InstrDTD.ACTIVITY_STUDENTS, new Students( StudentPersonalRefId ) );
 }
Beispiel #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="studentPersonalRefId">GUID that identifies the student that this element refers to.</param>
 ///
 public Students(StudentPersonalRefId studentPersonalRefId) : base(CommonDTD.STUDENTS)
 {
     this.StudentPersonalRefId = studentPersonalRefId;
 }