예제 #1
0
 public ClarificationComment(Post Post, string Comment)
 {
     this.Post = Post;
     this.Comment = Comment;
 }
예제 #2
0
 public void RemovePost(Post post)
 {
     Posts.Remove(post);
 }
예제 #3
0
 public PostComment(Post Post, string Comment)
 {
     this.Post = Post;
     this.Comment = Comment;
 }
예제 #4
0
 public Post CreatePost(Post post)
 {
     Posts.Add(post);
     return post;
 }