public AbstractCommentsController(
     ApiSettings settings,
     ILogger <AbstractCommentsController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICommentsService commentsService,
     IApiCommentsModelMapper commentsModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CommentsService     = commentsService;
     this.CommentsModelMapper = commentsModelMapper;
 }
Ejemplo n.º 2
0
 public CommentsController(
     ApiSettings settings,
     ILogger <CommentsController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICommentsService commentsService,
     IApiCommentsModelMapper commentsModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            commentsService,
            commentsModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }