Exemplo n.º 1
0
 /// <summary>
 /// 填入學生聯絡資料
 /// </summary>
 public void FillContactInfo(params StudentRecord[] students)
 {
     if (_Provider != null)
     {
         _Provider.FillContactInfo(students);
     }
     if (FillingContactInfo != null)
     {
         FillingContactInfo.Invoke(this, new FillEventArgs <StudentRecord>(_AccessHelper, students));
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 填入學生聯絡資料
 /// </summary>
 public void FillContactInfo(System.Collections.Generic.IEnumerable <StudentRecord> students)
 {
     if (_Provider != null)
     {
         _Provider.FillContactInfo(students);
     }
     if (FillingContactInfo != null)
     {
         FillingContactInfo.Invoke(this, new FillEventArgs <StudentRecord>(_AccessHelper, students));
     }
 }