public void AddEntradasRow(EntradasRow row) {
     this.Rows.Add(row);
 }
 public void RemoveEntradasRow(EntradasRow row) {
     this.Rows.Remove(row);
 }
 public EntradasRowChangeEvent(EntradasRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }