public IActionResult Delete(int id) { try { _objetivoRepository.Excluir(id); return(Ok(id)); } catch (Exception ex) { return(BadRequest(ex.Message)); } }
public void Delete(int id) { _ObjetivoRepository.Excluir(id); }