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