Exemplo n.º 1
0
        public CPostList GetOffsetPostsForUser(string userId, int offset)
        {
            CPostList list = new CPostList();

            list.LoadOffsetPostsForUser(Guid.Parse(userId), offset);
            return(list);
        }
Exemplo n.º 2
0
        public CPostList GetRepliesForPost(string postId)
        {
            CPostList list = new CPostList();

            list.LoadRepliesForPost(Guid.Parse(postId));
            return(list);
        }
Exemplo n.º 3
0
        public CPostList GetPostsForUser(string userId)
        {
            CPostList list = new CPostList();

            list.LoadPostsForUser(Guid.Parse(userId));
            return(list);
        }