public ListaCamposRow AddListaCamposRow(System.Guid ID, MetodoRow parentMetodoRowByFK_Metodo_ListaCampos, string Nome) {
     ListaCamposRow rowListaCamposRow = ((ListaCamposRow)(this.NewRow()));
     rowListaCamposRow.ItemArray = new object[] {
             ID,
             parentMetodoRowByFK_Metodo_ListaCampos[0],
             Nome};
     this.Rows.Add(rowListaCamposRow);
     return rowListaCamposRow;
 }
 public void RemoveMetodoRow(MetodoRow row) {
     this.Rows.Remove(row);
 }
 public MetodoRowChangeEvent(MetodoRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddMetodoRow(MetodoRow row) {
     this.Rows.Add(row);
 }