예제 #1
0
파일: PostComment.cs 프로젝트: dblock/dblog
        public PostCommentTest()
        {
            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            PostTest Post = new PostTest();
            AddDependentObject(Post);

            mPostComment = new PostComment();
            mPostComment.Comment = comment.Comment;
            mPostComment.Post = Post.Post;
        }
예제 #2
0
파일: Thread.cs 프로젝트: dblock/dblog
        public ThreadTest()
        {
            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            CommentTest parentcomment = new CommentTest();
            AddDependentObject(parentcomment);

            mThread = new Thread();
            mThread.Comment = comment.Comment;
            mThread.ParentComment = parentcomment.Comment;
        }
예제 #3
0
        public ImageCommentTest()
        {
            ImageTest image = new ImageTest();
            AddDependentObject(image);

            CommentTest comment = new CommentTest();
            AddDependentObject(comment);

            mImageComment = new ImageComment();
            mImageComment.Image = image.Image;
            mImageComment.Comment = comment.Comment;
        }
예제 #4
0
        public ThreadTest()
        {
            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            CommentTest parentcomment = new CommentTest();

            AddDependentObject(parentcomment);

            mThread               = new Thread();
            mThread.Comment       = comment.Comment;
            mThread.ParentComment = parentcomment.Comment;
        }
예제 #5
0
        public ImageCommentTest()
        {
            ImageTest image = new ImageTest();

            AddDependentObject(image);

            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            mImageComment         = new ImageComment();
            mImageComment.Image   = image.Image;
            mImageComment.Comment = comment.Comment;
        }
예제 #6
0
        public PostCommentTest()
        {
            CommentTest comment = new CommentTest();

            AddDependentObject(comment);

            PostTest Post = new PostTest();

            AddDependentObject(Post);

            mPostComment         = new PostComment();
            mPostComment.Comment = comment.Comment;
            mPostComment.Post    = Post.Post;
        }