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