Exemplo n.º 1
0
    public void Delete(int Ann_Id)
    {
        AnnoncesFavorites Selection = (AnnoncesFavorites)HttpContext.Current.Profile["MaSelectionDAnnonces"];

        if (Selection != null)
        {
            Selection.SupprimerAnnonce(Ann_Id);
        }
    }
Exemplo n.º 2
0
    public DataSet Select()
    {
        AnnoncesFavorites Selection = (AnnoncesFavorites)HttpContext.Current.Profile["MaSelectionDAnnonces"];

        if (Selection == null)
        {
            return(AnnoncesFavorites.EmptyDataSet);
        }
        return(Selection.RecupererAnnoncesFavorites());
    }