public async Task <bool> DeletarFavoritoNaAPI(int id) { try { var resultado = await _webAPI.DeleteAPIAsync <Repositorio>(_endPointURL.ExcluirFavoritos + id); return(resultado.id != 0); } catch (System.Exception) { return(false); } }