コード例 #1
0
ファイル: Comment.cs プロジェクト: attila3453/alsing
 public Comment(Post post, UserInfo userInfo, string text)
 {
     this.Post = post;
     this.UserInfo = userInfo;
     this.Body = text;
     this.CreationDate = DateTime.Now;
 }
コード例 #2
0
ファイル: PostDeletedEvent.cs プロジェクト: attila3453/alsing
 public PostDeletedEvent(Post post)
 {
     this.Post = post;
 }
コード例 #3
0
 public RepliedToPostEvent(Post post,Comment comment)
 {
     this.Post = post;
     this.Comment = comment;
 }
コード例 #4
0
ファイル: EditedPostEvent.cs プロジェクト: attila3453/alsing
 public EditedPostEvent(Post post)
 {
     this.Post = post;
 }
コード例 #5
0
 public EnabledCommentsEvent(Post post)
 {
     this.Post = post;
 }
コード例 #6
0
 public AssignedCategoryToPostEvent(Post post,Category category)
 {
     this.Post = post;
     this.Category = category;
 }
コード例 #7
0
 public UnpublishedPostEvent(Post post)
 {
     this.Post = post;
 }
コード例 #8
0
ファイル: PostCreatedEvent.cs プロジェクト: attila3453/alsing
 public PostCreatedEvent(Post post)
 {
     this.Post = post;
 }