public void AddMetodoConsultaRow(MetodoConsultaRow row) {
     this.Rows.Add(row);
 }
 public void RemoveMetodoConsultaRow(MetodoConsultaRow row) {
     this.Rows.Remove(row);
 }
 public MetodoConsultaRowChangeEvent(MetodoConsultaRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }