예제 #1
0
            public tbTransportesRow AddtbTransportesRow(int idTransp, string mstrDescricao)
            {
                tbTransportesRow rowtbTransportesRow = ((tbTransportesRow)(this.NewRow()));

                rowtbTransportesRow.ItemArray = new object[] {
                    idTransp,
                    mstrDescricao
                };
                this.Rows.Add(rowtbTransportesRow);
                return(rowtbTransportesRow);
            }
예제 #2
0
 public tbTransportesRowChangeEvent(tbTransportesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemovetbTransportesRow(tbTransportesRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddtbTransportesRow(tbTransportesRow row)
 {
     this.Rows.Add(row);
 }