public account_tableRow Addaccount_tableRow(string sysid_account, string account_code, string account_name)
            {
                account_tableRow rowaccount_tableRow = ((account_tableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    sysid_account,
                    account_code,
                    account_name
                };
                rowaccount_tableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowaccount_tableRow);
                return(rowaccount_tableRow);
            }
 public account_tableRowChangeEvent(account_tableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void Removeaccount_tableRow(account_tableRow row)
 {
     this.Rows.Remove(row);
 }
 public void Addaccount_tableRow(account_tableRow row)
 {
     this.Rows.Add(row);
 }