public void RemoveDocumentosRow(DocumentosRow row) {
     this.Rows.Remove(row);
 }
 public DocumentosRowChangeEvent(DocumentosRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddDocumentosRow(DocumentosRow row) {
     this.Rows.Add(row);
 }