Пример #1
0
 public AbstractCommentController(
     ApiSettings settings,
     ILogger <AbstractCommentController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICommentService commentService,
     IApiCommentModelMapper commentModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CommentService     = commentService;
     this.CommentModelMapper = commentModelMapper;
 }
Пример #2
0
 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;
 }