public ActionResult <dynamic> Delete(int id)
        {
            try
            {
                _objetivoRepository.Delete(id);

                return(new
                {
                    mensagem = "Registro Deletado com Sucesso"
                });
            }
            catch (Exception)
            {
                return(BadRequest(new { message = "Não foi possível remover" }));
            }
        }