コード例 #1
0
            public ExciseIndividualTypeRow AddExciseIndividualTypeRow(byte IndividualTypeID, string IndividualType)
            {
                ExciseIndividualTypeRow rowExciseIndividualTypeRow = ((ExciseIndividualTypeRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    IndividualTypeID,
                    IndividualType
                };
                rowExciseIndividualTypeRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowExciseIndividualTypeRow);
                return(rowExciseIndividualTypeRow);
            }
コード例 #2
0
 public ExciseIndividualTypeRowChangeEvent(ExciseIndividualTypeRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveExciseIndividualTypeRow(ExciseIndividualTypeRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddExciseIndividualTypeRow(ExciseIndividualTypeRow row)
 {
     this.Rows.Add(row);
 }