Esempio n. 1
0
        public IEnumerable <Arbre> Donner(ObjetDonnerListe odl)
        {
            ArbreService rs = new ArbreService();

            return(rs.Donner(odl.ienum, odl.options).Select(j => j.VersAPI()));

            throw new NotImplementedException();
        }
Esempio n. 2
0
        public int?DonnerParNom(ChercherPar cp)
        {
            ArbreService rs = new ArbreService();

            return(rs.DonnerParNom(cp.chercheString, cp.chercheInt));

            throw new NotImplementedException();
        }
Esempio n. 3
0
        public bool Supprimer(int id)
        {
            ArbreService rs = new ArbreService();

            return(rs.Supprimer(id));
        }
Esempio n. 4
0
        public bool Modifier(int id, Arbre e)
        {
            ArbreService us = new ArbreService();

            return(us.Modifier(id, e.VersClient()));
        }
Esempio n. 5
0
        public bool Desactiver(int id)
        {
            ArbreService us = new ArbreService();

            return(us.Desactiver(id));
        }
Esempio n. 6
0
        public IEnumerable <Arbre> DonnerParUtilisateur(int id)
        {
            ArbreService rs = new ArbreService();

            return(rs.DonnerParUtilisateur(id).Select(l => l.VersAPI()));
        }
Esempio n. 7
0
        public Arbre Donner(int id)
        {
            ArbreService us = new ArbreService();

            return(us.Donner(id).VersAPI());
        }
Esempio n. 8
0
        public IEnumerable <Arbre> Donner()
        {
            ArbreService us = new ArbreService();

            return(us.Donner().Select(j => j.VersAPI()));
        }
Esempio n. 9
0
        public int Creer(Arbre e)
        {
            ArbreService us = new ArbreService();

            return(us.Creer(e.VersClient()));
        }
Esempio n. 10
0
        public bool EstUtilisee(int id)
        {
            ArbreService rs = new ArbreService();

            return(rs.EstUtilisee(id, null));
        }
Esempio n. 11
0
 private static void arbre(int id)
 {
     var xx = new ArbreService().DonnerParUtilisateur(id);
     var yy = "oooo";
 }