コード例 #1
0
 public AbstractMutexController(
     ApiSettings settings,
     ILogger <AbstractMutexController> logger,
     ITransactionCoordinator transactionCoordinator,
     IMutexService mutexService,
     IApiMutexModelMapper mutexModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.MutexService     = mutexService;
     this.MutexModelMapper = mutexModelMapper;
 }
コード例 #2
0
 public MutexController(
     ApiSettings settings,
     ILogger <MutexController> logger,
     ITransactionCoordinator transactionCoordinator,
     IMutexService mutexService,
     IApiMutexModelMapper mutexModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            mutexService,
            mutexModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }