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