public ListEventEngineTypeTableRow AddListEventEngineTypeTableRow(int EventTypeID, string EventType)
            {
                ListEventEngineTypeTableRow rowListEventEngineTypeTableRow = ((ListEventEngineTypeTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    EventTypeID,
                    EventType
                };
                rowListEventEngineTypeTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListEventEngineTypeTableRow);
                return(rowListEventEngineTypeTableRow);
            }
 public void RemoveListEventEngineTypeTableRow(ListEventEngineTypeTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddListEventEngineTypeTableRow(ListEventEngineTypeTableRow row)
 {
     this.Rows.Add(row);
 }
 public ListEventEngineTypeTableRowChangeEvent(ListEventEngineTypeTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }