public SearchTermRow AddSearchTermRow(string Value)
            {
                SearchTermRow rowSearchTermRow = ((SearchTermRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    null,
                    Value
                };
                rowSearchTermRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowSearchTermRow);
                return(rowSearchTermRow);
            }
 public SearchTermRowChangeEvent(SearchTermRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveSearchTermRow(SearchTermRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddSearchTermRow(SearchTermRow row)
 {
     this.Rows.Add(row);
 }