コード例 #1
0
 public AbstractKeyAllocationController(
     ApiSettings settings,
     ILogger <AbstractKeyAllocationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IKeyAllocationService keyAllocationService,
     IApiKeyAllocationModelMapper keyAllocationModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.KeyAllocationService     = keyAllocationService;
     this.KeyAllocationModelMapper = keyAllocationModelMapper;
 }
コード例 #2
0
 public KeyAllocationController(
     ApiSettings settings,
     ILogger <KeyAllocationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IKeyAllocationService keyAllocationService,
     IApiKeyAllocationModelMapper keyAllocationModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            keyAllocationService,
            keyAllocationModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }