public AbstractCommentController( ApiSettings settings, ILogger <AbstractCommentController> logger, ITransactionCoordinator transactionCoordinator, ICommentService commentService, IApiCommentModelMapper commentModelMapper ) : base(settings, logger, transactionCoordinator) { this.CommentService = commentService; this.CommentModelMapper = commentModelMapper; }
public CommentController( ApiSettings settings, ILogger <CommentController> logger, ITransactionCoordinator transactionCoordinator, ICommentService commentService, IApiCommentModelMapper commentModelMapper ) : base(settings, logger, transactionCoordinator, commentService, commentModelMapper) { this.BulkInsertLimit = 250; this.MaxLimit = 1000; this.DefaultLimit = 250; }