Example #1
0
 /// <summary>
 /// 從XML載入設定值
 /// <![CDATA[
 /// ]]>
 /// </summary>
 /// <param name="data"></param>
 public void Load(XmlElement data)
 {
     Father = new Father(data);
     Mother = new Mother(data);
     Custodian = new Custodian(data);
     RefStudentID = data.GetAttribute("RefStudentID");
 }
Example #2
0
 /// <summary>
 /// 預設建構式
 /// </summary>
 public ParentRecord()
 {
     Father = new Father();
     Mother = new Mother();
     Custodian = new Custodian();
 }