コード例 #1
0
ファイル: Comment.cs プロジェクト: attila3453/alsing
        public void Approve()
        {
            this.Approved = true;

            var message = new ApprovedCommentEvent(this);
            DomainEvents.Raise(message);
        }
コード例 #2
0
ファイル: Config.cs プロジェクト: attila3453/alsing
        private static void OnApprovedComment(ApprovedCommentEvent commentApproved)
        {

        }