public AbstractProductController(
     ApiSettings settings,
     ILogger <AbstractProductController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductService productService,
     IApiProductModelMapper productModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProductService     = productService;
     this.ProductModelMapper = productModelMapper;
 }
Пример #2
0
 public ProductController(
     ApiSettings settings,
     ILogger <ProductController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductService productService,
     IApiProductModelMapper productModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            productService,
            productModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }