public EventTypeRow AddEventTypeRow(string EventTypeName, string EventTypeDescription)
            {
                EventTypeRow rowEventTypeRow = ((EventTypeRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    EventTypeName,
                    EventTypeDescription
                };
                rowEventTypeRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowEventTypeRow);
                return(rowEventTypeRow);
            }
 public EventTypeRowChangeEvent(EventTypeRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveEventTypeRow(EventTypeRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddEventTypeRow(EventTypeRow row)
 {
     this.Rows.Add(row);
 }