Esempio n. 1
0
 public AbstractCurrencyController(
     ApiSettings settings,
     ILogger <AbstractCurrencyController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICurrencyService currencyService,
     IApiCurrencyModelMapper currencyModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CurrencyService     = currencyService;
     this.CurrencyModelMapper = currencyModelMapper;
 }
Esempio n. 2
0
 public CurrencyController(
     ApiSettings settings,
     ILogger <CurrencyController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICurrencyService currencyService,
     IApiCurrencyModelMapper currencyModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            currencyService,
            currencyModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }