Exemple #1
0
 public AbstractProductModelIllustrationController(
     ApiSettings settings,
     ILogger <AbstractProductModelIllustrationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductModelIllustrationService productModelIllustrationService,
     IApiProductModelIllustrationModelMapper productModelIllustrationModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProductModelIllustrationService     = productModelIllustrationService;
     this.ProductModelIllustrationModelMapper = productModelIllustrationModelMapper;
 }
Exemple #2
0
 public ProductModelIllustrationController(
     ApiSettings settings,
     ILogger <ProductModelIllustrationController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductModelIllustrationService productModelIllustrationService,
     IApiProductModelIllustrationModelMapper productModelIllustrationModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            productModelIllustrationService,
            productModelIllustrationModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }