public AbstractBucketController(
     ApiSettings settings,
     ILogger <AbstractBucketController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBucketService bucketService,
     IApiBucketModelMapper bucketModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.BucketService     = bucketService;
     this.BucketModelMapper = bucketModelMapper;
 }
Example #2
0
 public BucketController(
     ApiSettings settings,
     ILogger <BucketController> logger,
     ITransactionCoordinator transactionCoordinator,
     IBucketService bucketService,
     IApiBucketModelMapper bucketModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            bucketService,
            bucketModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }