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