public VoosRow AddVoosRow(string Codigo, string Data, string Origem, string Destino) { VoosRow rowVoosRow = ((VoosRow)(this.NewRow())); object[] columnValuesArray = new object[] { Codigo, Data, Origem, Destino }; rowVoosRow.ItemArray = columnValuesArray; this.Rows.Add(rowVoosRow); return(rowVoosRow); }
public VoosRowChangeEvent(VoosRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveVoosRow(VoosRow row) { this.Rows.Remove(row); }
public void AddVoosRow(VoosRow row) { this.Rows.Add(row); }