public void RemoveCategAppRow(CategAppRow row)
 {
     this.Rows.Remove(row);
 }
 public CategAppRowChangeEvent(CategAppRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddCategAppRow(CategAppRow row)
 {
     this.Rows.Add(row);
 }