コード例 #1
0
 public AbstractVariableSetController(
     ApiSettings settings,
     ILogger <AbstractVariableSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVariableSetService variableSetService,
     IApiVariableSetModelMapper variableSetModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VariableSetService     = variableSetService;
     this.VariableSetModelMapper = variableSetModelMapper;
 }
コード例 #2
0
 public VariableSetController(
     ApiSettings settings,
     ILogger <VariableSetController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVariableSetService variableSetService,
     IApiVariableSetModelMapper variableSetModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            variableSetService,
            variableSetModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }