예제 #1
0
파일: Comment.cs 프로젝트: daywrite/EApp
 public Comment(Post post, User author, string content)
     : base()
 {
     this.post = post;
     this.author = author;
     this.content = content;
 }
예제 #2
0
파일: Comment.cs 프로젝트: daywrite/EApp
 public static Comment Create(Post post, User author, string content)
 {
     return new Comment(post, author, content);
 }