public PilotoRow AddPilotoRow(string Nome, string Cht, string DataNasc) { PilotoRow rowPilotoRow = ((PilotoRow)(this.NewRow())); object[] columnValuesArray = new object[] { Nome, Cht, DataNasc }; rowPilotoRow.ItemArray = columnValuesArray; this.Rows.Add(rowPilotoRow); return(rowPilotoRow); }
public PilotoRowChangeEvent(PilotoRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovePilotoRow(PilotoRow row) { this.Rows.Remove(row); }
public void AddPilotoRow(PilotoRow row) { this.Rows.Add(row); }