Exemplo n.º 1
0
 public AbstractReplyController(
     ApiSettings settings,
     ILogger <AbstractReplyController> logger,
     ITransactionCoordinator transactionCoordinator,
     IReplyService replyService,
     IApiReplyModelMapper replyModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ReplyService     = replyService;
     this.ReplyModelMapper = replyModelMapper;
 }
Exemplo n.º 2
0
 public ReplyController(
     ApiSettings settings,
     ILogger <ReplyController> logger,
     ITransactionCoordinator transactionCoordinator,
     IReplyService replyService,
     IApiReplyModelMapper replyModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            replyService,
            replyModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }