Example #1
0
 /// <summary>
 /// 填入學生學年分項成績
 /// </summary>
 /// <param name="filterRepeat">過濾重讀(重複年級)資料</param>
 public void FillSchoolYearEntryScore(bool filterRepeat, params StudentRecord[] students)
 {
     if (_Provider != null)
     {
         _Provider.FillSchoolYearEntryScore(students, filterRepeat);
     }
     if (FillingSchoolYearEntryScore != null)
     {
         FillingSchoolYearEntryScore.Invoke(this, new FillScoreInfoEventArgs <StudentRecord>(_AccessHelper, filterRepeat, students));
     }
 }
Example #2
0
 /// <summary>
 /// 填入學生學年分項成績
 /// </summary>
 /// <param name="filterRepeat">過濾重讀(重複年級)資料</param>
 public void FillSchoolYearEntryScore(bool filterRepeat, System.Collections.Generic.IEnumerable <StudentRecord> students)
 {
     if (_Provider != null)
     {
         _Provider.FillSchoolYearEntryScore(students, filterRepeat);
     }
     if (FillingSchoolYearEntryScore != null)
     {
         FillingSchoolYearEntryScore.Invoke(this, new FillScoreInfoEventArgs <StudentRecord>(_AccessHelper, filterRepeat, students));
     }
 }