public void RemoveVersaoRow(VersaoRow row) {
     this.Rows.Remove(row);
 }
 public VersaoRowChangeEvent(VersaoRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddVersaoRow(VersaoRow row) {
     this.Rows.Add(row);
 }