/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="localId">The locally-defined identifier for this student.</param>
 ///<param name="homeEnrollmentSif3">Enrollment-related information for the school that is responsible for reporting the student's membership/child accounting information. This is most likely the primary enrollment site for the student.</param>
 ///
 public AssessmentStudentSnapshotSif3(string localId, HomeEnrollmentSif3 homeEnrollmentSif3) : base(AssessmentDTD.ASSESSMENTSTUDENTSNAPSHOTSIF3)
 {
     this.LocalId            = localId;
     this.HomeEnrollmentSif3 = homeEnrollmentSif3;
 }
 ///<summary>Sets the value of the <c>&lt;AssessmentStudentSnapshotSif3&gt;</c> element.</summary>
 /// <param name="LocalId">The locally-defined identifier for this student.</param>
 /// <param name="HomeEnrollmentSif3">Enrollment-related information for the school that is responsible for reporting the student's membership/child accounting information. This is most likely the primary enrollment site for the student.</param>
 ///<remarks>
 /// <para>This form of <c>setAssessmentStudentSnapshotSif3</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>AssessmentStudentSnapshotSif3</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetAssessmentStudentSnapshotSif3(string LocalId, HomeEnrollmentSif3 HomeEnrollmentSif3)
 {
     RemoveChild(AssessmentDTD.SIF3ASSESSMENTREGISTRATION_ASSESSMENTSTUDENTSNAPSHOTSIF3);
     AddChild(AssessmentDTD.SIF3ASSESSMENTREGISTRATION_ASSESSMENTSTUDENTSNAPSHOTSIF3, new AssessmentStudentSnapshotSif3(LocalId, HomeEnrollmentSif3));
 }