Example #1
0
            public RefCounterRow AddRefCounterRow(string CarrID, string CounterNumber, string Airport)
            {
                RefCounterRow rowRefCounterRow = ((RefCounterRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    CarrID,
                    CounterNumber,
                    Airport
                };
                rowRefCounterRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowRefCounterRow);
                return(rowRefCounterRow);
            }
Example #2
0
 public RefCounterRowChangeEvent(RefCounterRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemoveRefCounterRow(RefCounterRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddRefCounterRow(RefCounterRow row)
 {
     this.Rows.Add(row);
 }