コード例 #1
0
 public AbstractRowVersionCheckController(
     ApiSettings settings,
     ILogger <AbstractRowVersionCheckController> logger,
     ITransactionCoordinator transactionCoordinator,
     IRowVersionCheckService rowVersionCheckService,
     IApiRowVersionCheckModelMapper rowVersionCheckModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.RowVersionCheckService     = rowVersionCheckService;
     this.RowVersionCheckModelMapper = rowVersionCheckModelMapper;
 }
コード例 #2
0
 public RowVersionCheckController(
     ApiSettings settings,
     ILogger <RowVersionCheckController> logger,
     ITransactionCoordinator transactionCoordinator,
     IRowVersionCheckService rowVersionCheckService,
     IApiRowVersionCheckModelMapper rowVersionCheckModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            rowVersionCheckService,
            rowVersionCheckModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }