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 Arbre Donner(int id)
        {
            ArbreService us = new ArbreService();

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

            return(us.Donner().Select(j => j.VersAPI()));
        }