<?php
namespace Anowave\Ec\Ui\Component\Listing\Column\CurrentConsent;

/**
 * Interceptor class for @see \Anowave\Ec\Ui\Component\Listing\Column\CurrentConsent
 */
class Interceptor extends \Anowave\Ec\Ui\Component\Listing\Column\CurrentConsent implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\View\Element\UiComponent\ContextInterface $context, \Magento\Framework\View\Element\UiComponentFactory $uiComponentFactory, \Magento\Sales\Api\OrderRepositoryInterface $orderRepository, \Magento\Framework\Api\SearchCriteriaBuilder $criteria, \Anowave\Ec\Model\ResourceModel\Transaction\CollectionFactory $transactionsFactory, \Magento\Framework\View\Element\BlockFactory $blockFactory, \Anowave\Ec\Model\System\Config\Source\Consent\Classification $classification, array $components = [], array $data = [])
    {
        $this->___init();
        parent::__construct($context, $uiComponentFactory, $orderRepository, $criteria, $transactionsFactory, $blockFactory, $classification, $components, $data);
    }

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