public AbstractPaymentTypeController(
     ApiSettings settings,
     ILogger <AbstractPaymentTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPaymentTypeService paymentTypeService,
     IApiPaymentTypeModelMapper paymentTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PaymentTypeService     = paymentTypeService;
     this.PaymentTypeModelMapper = paymentTypeModelMapper;
 }
Esempio n. 2
0
 public PaymentTypeController(
     ApiSettings settings,
     ILogger <PaymentTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPaymentTypeService paymentTypeService,
     IApiPaymentTypeModelMapper paymentTypeModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            paymentTypeService,
            paymentTypeModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }