Exemplo n.º 1
0
 /// <summary>
 /// 填入學生修課資料
 /// </summary>
 /// <param name="schoolYear">學年度</param>
 /// <param name="semester">學期</param>
 public void FillAttendCourse(int schoolYear, int semester, params StudentRecord[] students)
 {
     if (_Provider != null)
     {
         _Provider.FillAttendCourse(schoolYear, semester, students);
     }
     if (FillingAttendCourse != null)
     {
         FillingAttendCourse.Invoke(this, new FillSemesterInfoEventArgs <StudentRecord>(_AccessHelper, schoolYear, semester, students));
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 填入學生修課資料
 /// </summary>
 /// <param name="schoolYear">學年度</param>
 /// <param name="semester">學期</param>
 public void FillAttendCourse(int schoolYear, int semester, System.Collections.Generic.IEnumerable <SmartSchool.Customization.Data.StudentRecord> students)
 {
     if (_Provider != null)
     {
         _Provider.FillAttendCourse(schoolYear, semester, students);
     }
     if (FillingAttendCourse != null)
     {
         FillingAttendCourse.Invoke(this, new FillSemesterInfoEventArgs <StudentRecord>(_AccessHelper, schoolYear, semester, students));
     }
 }