public TBL_ConnectionRowChangeEvent(TBL_ConnectionRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveTBL_ConnectionRow(TBL_ConnectionRow row) {
     this.Rows.Remove(row);
 }
 public TBL_Generic_TypeRow AddTBL_Generic_TypeRow(TBL_ConnectionRow parentTBL_ConnectionRowByFK_TBL_Connection_TBL_Generic_Type, string Generic_Type, string Generic_Type_Name) {
     TBL_Generic_TypeRow rowTBL_Generic_TypeRow = ((TBL_Generic_TypeRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             Generic_Type,
             Generic_Type_Name};
     if ((parentTBL_ConnectionRowByFK_TBL_Connection_TBL_Generic_Type != null)) {
         columnValuesArray[0] = parentTBL_ConnectionRowByFK_TBL_Connection_TBL_Generic_Type[0];
     }
     rowTBL_Generic_TypeRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowTBL_Generic_TypeRow);
     return rowTBL_Generic_TypeRow;
 }
 public void AddTBL_ConnectionRow(TBL_ConnectionRow row) {
     this.Rows.Add(row);
 }