Esempio n. 1
0
 public AbstractStateController(
     ApiSettings settings,
     ILogger <AbstractStateController> logger,
     ITransactionCoordinator transactionCoordinator,
     IStateService stateService,
     IApiStateModelMapper stateModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.StateService     = stateService;
     this.StateModelMapper = stateModelMapper;
 }
Esempio n. 2
0
        public StateController(
            ApiSettings settings,
            ILogger<StateController> logger,
            ITransactionCoordinator transactionCoordinator,
            IStateService stateService,
            IApiStateModelMapper stateModelMapper
            )
            : base(settings,
			       logger,
			       transactionCoordinator,
			       stateService,
			       stateModelMapper)
        {
            this.BulkInsertLimit = 250;
            this.MaxLimit = 1000;
            this.DefaultLimit = 250;
        }