public ClarificationComment(Post Post, string Comment) { this.Post = Post; this.Comment = Comment; }
public void RemovePost(Post post) { Posts.Remove(post); }
public PostComment(Post Post, string Comment) { this.Post = Post; this.Comment = Comment; }
public Post CreatePost(Post post) { Posts.Add(post); return post; }