コード例 #1
0
 public Comment(Model.Comment comment)
 {
     Id        = comment.Id;
     Body      = comment.Body;
     CreatedOn = comment.CreatedOn;
     User      = new UserResponse.Profile(comment.Owner);
 }
コード例 #2
0
            public Post(Model.Post post)
            {
                Id        = post.Id;
                Title     = post.Title;
                Body      = post.Body;
                CreatedOn = post.CreatedOn;
                User      = new UserResponse.Profile(post.Owner);

                SetupComments(post);
            }