public AbstractShipMethodController(
     ApiSettings settings,
     ILogger <AbstractShipMethodController> logger,
     ITransactionCoordinator transactionCoordinator,
     IShipMethodService shipMethodService,
     IApiShipMethodModelMapper shipMethodModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ShipMethodService     = shipMethodService;
     this.ShipMethodModelMapper = shipMethodModelMapper;
 }
Beispiel #2
0
 public ShipMethodController(
     ApiSettings settings,
     ILogger <ShipMethodController> logger,
     ITransactionCoordinator transactionCoordinator,
     IShipMethodService shipMethodService,
     IApiShipMethodModelMapper shipMethodModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            shipMethodService,
            shipMethodModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }