Esempio n. 1
0
        private void btnExcluir_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("Tem certeza que deseja excluir?", "Confirmação", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                var idMotorista = int.Parse(dgvMotoristas.CurrentRow.Cells[0].Value.ToString());
                _motoristaApp.Delete(idMotorista);

                ReloadForm();
            }
        }
Esempio n. 2
0
 public IHttpActionResult Deletar([FromUri] string cnh)
 {
     try
     {
         _motoristaApp.Delete(cnh);
         return(Ok());
     }
     catch (Exception e)
     {
         return(InternalServerError());
     }
 }