<?php
namespace Autogedal\Extend\Controller\Compatibility\Products;

/**
 * Interceptor class for @see \Autogedal\Extend\Controller\Compatibility\Products
 */
class Interceptor extends \Autogedal\Extend\Controller\Compatibility\Products implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\Action\Context $context, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productCollectionFactory, \Magento\Catalog\Model\Product\Visibility $visibility, \Magento\Catalog\Model\CategoryRepository $categoryRepository, \Autogedal\Extend\Helper\ProductLabelsConfig $productLabelsConfig, \Magento\Framework\App\ResourceConnection $resourceConnection, \Magento\Catalog\Helper\Image $imageHelper)
    {
        $this->___init();
        parent::__construct($context, $resultJsonFactory, $productCollectionFactory, $visibility, $categoryRepository, $productLabelsConfig, $resourceConnection, $imageHelper);
    }

    /**
     * {@inheritdoc}
     */
    public function execute()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
        return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute();
    }

    /**
     * {@inheritdoc}
     */
    public function dispatch(\Magento\Framework\App\RequestInterface $request)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dispatch');
        return $pluginInfo ? $this->___callPlugins('dispatch', func_get_args(), $pluginInfo) : parent::dispatch($request);
    }
}
