Exemplo n.º 1
0
 public AbstractPipelineController(
     ApiSettings settings,
     ILogger <AbstractPipelineController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPipelineService pipelineService,
     IApiPipelineModelMapper pipelineModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PipelineService     = pipelineService;
     this.PipelineModelMapper = pipelineModelMapper;
 }
Exemplo n.º 2
0
 public PipelineController(
     ApiSettings settings,
     ILogger <PipelineController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPipelineService pipelineService,
     IApiPipelineModelMapper pipelineModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            pipelineService,
            pipelineModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }