/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">This is the unique identification code</param> ///<param name="studentPersonalRefId">The GUID of the student that this object is linked to.</param> ///<param name="studentParticipationAsOfDate">Effective date (NOT the entry date) of this StudentParticipation instance for the identified student and program. Each time there is a change to the student's program participation profile, a new instance of this object is to be generated with the appropriate StudentParticipationAsOfDate and a new RefId.</param> ///<param name="managingSchool">A ManagingSchool</param> /// public StudentParticipation( string refId, string studentPersonalRefId, DateTime? studentParticipationAsOfDate, ManagingSchool managingSchool ) : base(Adk.SifVersion, ProgramsDTD.STUDENTPARTICIPATION) { this.RefId = refId; this.StudentPersonalRefId = studentPersonalRefId; this.StudentParticipationAsOfDate = studentParticipationAsOfDate; this.ManagingSchool = managingSchool; }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="refId">This is the unique identification code</param> ///<param name="studentPersonalRefId">The GUID of the student that this object is linked to.</param> ///<param name="studentParticipationAsOfDate">Effective date (NOT the entry date) of this StudentParticipation instance for the identified student and program. Each time there is a change to the student's program participation profile, a new instance of this object is to be generated with the appropriate StudentParticipationAsOfDate and a new RefId.</param> ///<param name="managingSchool">A ManagingSchool</param> /// public StudentParticipation(string refId, string studentPersonalRefId, DateTime?studentParticipationAsOfDate, ManagingSchool managingSchool) : base(Adk.SifVersion, ProgramsDTD.STUDENTPARTICIPATION) { this.RefId = refId; this.StudentPersonalRefId = studentPersonalRefId; this.StudentParticipationAsOfDate = studentParticipationAsOfDate; this.ManagingSchool = managingSchool; }