public tbIncotermsRow AddtbIncotermsRow(int idIncoterm, string sigla, string mstrDescricao) { tbIncotermsRow rowtbIncotermsRow = ((tbIncotermsRow)(this.NewRow())); rowtbIncotermsRow.ItemArray = new object[] { idIncoterm, sigla, mstrDescricao }; this.Rows.Add(rowtbIncotermsRow); return(rowtbIncotermsRow); }
public tbIncotermsRowChangeEvent(tbIncotermsRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemovetbIncotermsRow(tbIncotermsRow row) { this.Rows.Remove(row); }
public void AddtbIncotermsRow(tbIncotermsRow row) { this.Rows.Add(row); }