コード例 #1
0
 private void btnSalvar_Click(object sender, EventArgs e)
 {
     try
     {
         model      set = new model();
         DtoVeiculo v   = new DtoVeiculo();
         v.marcamodelo = textBoxMarcaModelo.Text;
         if (textBoxKm.Text != string.Empty)
         {
             v.km_atual = int.Parse(textBoxKm.Text);
         }
         v.placa = textBoxAnoModelo.Text;
         if (textBoxID.Text == string.Empty)
         {
             set.setVeiculo(v);
         }
         else
         {
             v.id = int.Parse(textBoxID.Text);
             set.AlteraVeiculo(v);
         }
         MessageBox.Show("Registro salvo com sucesso");
     }
     catch (Exception) {
     }
 }