public IHttpActionResult Delete(int id) { try { AlunoModel _aluno = new AlunoModel(); _aluno.DeletarDB(id); return(Ok("Deletado com sucesso")); } catch (Exception ex) { return(InternalServerError(ex)); } }