Ejemplo n.º 1
0
 public Comment(Post post, User author, string content)
     : base()
 {
     this.post = post;
     this.author = author;
     this.content = content;
 }
Ejemplo n.º 2
0
 public static Comment Create(Post post, User author, string content)
 {
     return new Comment(post, author, content);
 }