public AbstractProductListPriceHistoryController(
     ApiSettings settings,
     ILogger <AbstractProductListPriceHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductListPriceHistoryService productListPriceHistoryService,
     IApiProductListPriceHistoryModelMapper productListPriceHistoryModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.ProductListPriceHistoryService     = productListPriceHistoryService;
     this.ProductListPriceHistoryModelMapper = productListPriceHistoryModelMapper;
 }
 public ProductListPriceHistoryController(
     ApiSettings settings,
     ILogger <ProductListPriceHistoryController> logger,
     ITransactionCoordinator transactionCoordinator,
     IProductListPriceHistoryService productListPriceHistoryService,
     IApiProductListPriceHistoryModelMapper productListPriceHistoryModelMapper
     )
     : base(settings,
            logger,
            transactionCoordinator,
            productListPriceHistoryService,
            productListPriceHistoryModelMapper)
 {
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }