public AbstractProductInventoryController(
     ApiSettings settings,
     ILogger <AbstractProductInventoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductInventoryService productInventoryService,
     IApiProductInventoryModelMapper productInventoryModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProductInventoryService     = productInventoryService;
     this.ProductInventoryModelMapper = productInventoryModelMapper;
 }
예제 #2
0
 public ProductInventoryController(
     ApiSettings settings,
     ILogger <ProductInventoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductInventoryService productInventoryService,
     IApiProductInventoryModelMapper productInventoryModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            productInventoryService,
            productInventoryModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }