public tbTransportadorasMotoristasRow AddtbTransportadorasMotoristasRow(int nIdTransportadora, int nIdMotorista, string strNome, string strTelefone)
            {
                tbTransportadorasMotoristasRow rowtbTransportadorasMotoristasRow = ((tbTransportadorasMotoristasRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdTransportadora,
                    nIdMotorista,
                    strNome,
                    strTelefone
                };
                rowtbTransportadorasMotoristasRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbTransportadorasMotoristasRow);
                return(rowtbTransportadorasMotoristasRow);
            }
 public tbTransportadorasMotoristasRowChangeEvent(tbTransportadorasMotoristasRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbTransportadorasMotoristasRow(tbTransportadorasMotoristasRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbTransportadorasMotoristasRow(tbTransportadorasMotoristasRow row)
 {
     this.Rows.Add(row);
 }