Exemplo n.º 1
0
        public static DraftsTree ToDraftsTree(this IEnumerable <Post> posts)
        {
            var result = new DraftsTree();

            posts.ToList().ForEach(result.AddPost);
            return(result);
        }
Exemplo n.º 2
0
 public static DraftsTree ToDraftsTree(this IEnumerable<Post> posts)
 {
     var result = new DraftsTree();
     posts.ToList().ForEach(result.AddPost);
     return result;
 }