예제 #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();
        }
예제 #2
0
        public Arbre Donner(int id)
        {
            ArbreService us = new ArbreService();

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

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