/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="programType">A ProgramType</param>
 ///
 public StudentParticipationDataElement( ProgramType programType )
     : base(CommonDTD.STUDENTPARTICIPATIONDATAELEMENT)
 {
     this.ProgramType = programType;
 }
Ejemplo n.º 2
0
 ///<summary>Adds the value of the <c>&lt;StudentParticipationData&gt;</c> element.</summary>
 /// <param name="ProgramType">A ProgramType</param>
 ///<remarks>
 /// <para>This form of <c>setStudentParticipationData</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddStudentParticipationData</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.4</para>
 /// </remarks>
 public void AddStudentParticipationData(ProgramType ProgramType)
 {
     AddChild(CommonDTD.STUDENTPARTICIPATIONLIST_STUDENTPARTICIPATIONDATA, new StudentParticipationDataElement(ProgramType));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="programType">A ProgramType</param>
 ///
 public StudentParticipationDataElement(ProgramType programType) : base(CommonDTD.STUDENTPARTICIPATIONDATAELEMENT)
 {
     this.ProgramType = programType;
 }