/// <summary> /// 填入學生修課評量成績 /// </summary> /// <param name="schoolYear">學年度</param> /// <param name="semester">學期</param> /// <param name="students">學生</param> public void FillExamScore(int schoolYear, int semester, params StudentRecord[] students) { if (_Provider != null) { _Provider.FillExamScore(schoolYear, semester, students); } if (FillingExamScore != null) { FillingExamScore.Invoke(this, new FillSemesterInfoEventArgs <StudentRecord>(_AccessHelper, schoolYear, semester, students)); } }
/// <summary> /// 填入學生修課評量成績 /// </summary> /// <param name="courses">課程</param> public void FillExamScore(params CourseRecord[] courses) { if (_Provider != null) { _Provider.FillExamScore(courses); } if (FillingExamScore != null) { FillingExamScore.Invoke(this, new FillEventArgs <CourseRecord>(_AccessHelper, courses)); } }
/// <summary> /// 填入學生修課評量成績 /// </summary> /// <param name="schoolYear">學年度</param> /// <param name="semester">學期</param> /// <param name="students">學生</param> public void FillExamScore(int schoolYear, int semester, System.Collections.Generic.IEnumerable <SmartSchool.Customization.Data.StudentRecord> students) { if (_Provider != null) { _Provider.FillExamScore(schoolYear, semester, students); } if (FillingExamScore != null) { FillingExamScore.Invoke(this, new FillSemesterInfoEventArgs <StudentRecord>(_AccessHelper, schoolYear, semester, students)); } }
/// <summary> /// 填入學生修課評量成績 /// </summary> /// <param name="courses">課程</param> public void FillExamScore(System.Collections.Generic.IEnumerable <SmartSchool.Customization.Data.CourseRecord> courses) { if (_Provider != null) { _Provider.FillExamScore(courses); } if (FillingExamScore != null) { FillingExamScore.Invoke(this, new FillEventArgs <CourseRecord>(_AccessHelper, courses)); } }