public void RemoveseaRow(seaRow row) {
     this.Rows.Remove(row);
 }
 public seaRowChangeEvent(seaRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddseaRow(seaRow row) {
     this.Rows.Add(row);
 }