public void AddCorRow(CorRow row) {
     this.Rows.Add(row);
 }
 public void RemoveCorRow(CorRow row) {
     this.Rows.Remove(row);
 }
 public CorRowChangeEvent(CorRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }