Example #1
0
        private static DatesOfAttendanceType CreateDatesOfAttendanceType()
        {
            DatesOfAttendanceType d = new DatesOfAttendanceType();

            d.currentlyEnrolled          = false;
            d.currentlyEnrolledSpecified = true;

            d.EndDate = CreateFlexibleDatesType();

            d.enrollmentStatus = "Van school verwijderd";
            d.StartDate        = CreateFlexibleDatesType();

            d.studentInGoodStanding          = false;
            d.studentInGoodStandingSpecified = true;

            return(d);
        }
Example #2
0
        private static SchoolOrInstitutionTypeDegree CreateSchoolOrInstitutionTypeDegree()
        {
            SchoolOrInstitutionTypeDegree s = new SchoolOrInstitutionTypeDegree();

            s.Comments = "Commentaar";

            s.DatesOfAttendance = new List <DatesOfAttendanceType>();
            DatesOfAttendanceType d = CreateDatesOfAttendanceType();

            s.DatesOfAttendance.Add(d);

            s.DegreeClassification = new List <ClassificationType>();
            ClassificationType c = CreateClassificationType();

            s.DegreeClassification.Add(c);

            s.DegreeDate = CreateFlexibleDatesType();

            s.DegreeMajor = new List <MajorType>();
            MajorType ma = CreateMajorType();

            s.DegreeMajor.Add(ma);

            s.DegreeMeasure = CreateEducationalMeasureType();
            s.DegreeMinor   = new List <MinorType>();
            MinorType mi = CreateMinorType();

            s.DegreeMinor.Add(mi);

            s.DegreeName = CreateEduDegreeTypeDegreeName();

            s.degreeType          = "DegreeType";
            s.examPassed          = false;
            s.examPassedSpecified = true;

            s.graduatingDegree          = GraduatingDegreeType.graduating;
            s.graduatingDegreeSpecified = true;

            s.OtherHonors = new List <EduDegreeTypeOtherHonors>();
            EduDegreeTypeOtherHonors eo = CreateEduDegreeTypeOtherHonors();

            s.OtherHonors.Add(eo);

            return(s);
        }