<?php
namespace Anowave\Ec\Controller\Adminhtml\Analytics\Track;

/**
 * Interceptor class for @see \Anowave\Ec\Controller\Adminhtml\Analytics\Track
 */
class Interceptor extends \Anowave\Ec\Controller\Adminhtml\Analytics\Track implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Ui\Component\MassAction\Filter $filter, \Magento\Sales\Model\ResourceModel\Order\CollectionFactory $collectionFactory, \Magento\Sales\Api\OrderManagementInterface $orderManagement, \Magento\Sales\Api\OrderRepositoryInterface $orderRepository, \Anowave\Ec\Model\Api\Measurement\Protocol $protocol, \Anowave\Ec\Model\TransactionFactory $transactionFactory, \Anowave\Ec\Model\ResourceModel\Transaction\CollectionFactory $transactionCollectionFactory, \Anowave\Ec\Model\CookieManager $cookieManager, \Anowave\Ec4\Helper\Data $helper, \Magento\Framework\Api\SearchCriteriaBuilderFactory $searchCriteriaBuilderFactory)
    {
        $this->___init();
        parent::__construct($context, $filter, $collectionFactory, $orderManagement, $orderRepository, $protocol, $transactionFactory, $transactionCollectionFactory, $cookieManager, $helper, $searchCriteriaBuilderFactory);
    }

    /**
     * {@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);
    }
}
