Ejemplo n.º 1
0
 /// <summary>
 /// 填入學生學期歷程
 /// </summary>
 public void FillSemesterHistory(params StudentRecord[] students)
 {
     if (_Provider != null)
     {
         _Provider.FillSemesterHistory(students);
     }
     if (FillingSemesterHistory != null)
     {
         FillingSemesterHistory.Invoke(this, new FillEventArgs <StudentRecord>(_AccessHelper, students));
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 填入學生學期歷程
 /// </summary>
 public void FillSemesterHistory(System.Collections.Generic.IEnumerable <StudentRecord> students)
 {
     if (_Provider != null)
     {
         _Provider.FillSemesterHistory(students);
     }
     if (FillingSemesterHistory != null)
     {
         FillingSemesterHistory.Invoke(this, new FillEventArgs <StudentRecord>(_AccessHelper, students));
     }
 }