public CommentUpdater(IDatabase database, PermissionHandler <Comment> commentPermissionHandler, ICommentViewMapper commentMapper) { this.database = database; this.commentPermissionHandler = commentPermissionHandler; this.commentMapper = commentMapper; }
public CommentFinderById(IDatabase database, ICommentViewMapper commentMapper) { this.database = database; this.commentMapper = commentMapper; }
public CommentCreator(IDatabase database, ICommentViewMapper commentMapper) { this.database = database; this.commentMapper = commentMapper; }