コード例 #1
0
 public AbstractCurrencyRateController(
     ApiSettings settings,
     ILogger <AbstractCurrencyRateController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICurrencyRateService currencyRateService,
     IApiCurrencyRateModelMapper currencyRateModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CurrencyRateService     = currencyRateService;
     this.CurrencyRateModelMapper = currencyRateModelMapper;
 }
コード例 #2
0
 public CurrencyRateController(
     ApiSettings settings,
     ILogger <CurrencyRateController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICurrencyRateService currencyRateService,
     IApiCurrencyRateModelMapper currencyRateModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            currencyRateService,
            currencyRateModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }