// DELETE: api/Animal/5 public void Delete(int id) { try { AnimBL.BorrarAnimal(id); } catch (Exception ex) { throw new Exception(ex.Message, ex.InnerException); } }