public TypesRow AddTypesRow(int FeatureID, string FeatureTypeName, int FeatureTypeID, int ParentFeatureTypeID)
            {
                TypesRow rowTypesRow = ((TypesRow)(this.NewRow()));

                rowTypesRow.ItemArray = new object[] {
                    FeatureID,
                    FeatureTypeName,
                    FeatureTypeID,
                    ParentFeatureTypeID
                };
                this.Rows.Add(rowTypesRow);
                return(rowTypesRow);
            }
 public TypesRowChangeEvent(TypesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveTypesRow(TypesRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddTypesRow(TypesRow row)
 {
     this.Rows.Add(row);
 }
 public TypesRowChangeEvent(TypesRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveTypesRow(TypesRow row) {
     this.Rows.Remove(row);
 }
 public void AddTypesRow(TypesRow row) {
     this.Rows.Add(row);
 }