예제 #1
0
 public CommentUpdater(IDatabase database, PermissionHandler <Comment> commentPermissionHandler, ICommentViewMapper commentMapper)
 {
     this.database = database;
     this.commentPermissionHandler = commentPermissionHandler;
     this.commentMapper            = commentMapper;
 }
예제 #2
0
 public CommentFinderById(IDatabase database, ICommentViewMapper commentMapper)
 {
     this.database      = database;
     this.commentMapper = commentMapper;
 }
예제 #3
0
 public CommentCreator(IDatabase database, ICommentViewMapper commentMapper)
 {
     this.database      = database;
     this.commentMapper = commentMapper;
 }