<?php
namespace Autogedal\Retragere\Controller\Index\Post;

/**
 * Interceptor class for @see \Autogedal\Retragere\Controller\Index\Post
 */
class Interceptor extends \Autogedal\Retragere\Controller\Index\Post implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\Action\Context $context, \Autogedal\Retragere\Model\RetragereFactory $retragereFactory, \Magento\Framework\App\Request\DataPersistorInterface $dataPersistor, \Autogedal\Retragere\Model\MailInterface $mail, \Magento\Framework\Validator\EmailAddress $emailValidator, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Stdlib\DateTime\DateTime $dateTime, \Psr\Log\LoggerInterface $logger, \Magento\Sales\Model\ResourceModel\Order\CollectionFactory $orderCollectionFactory, \Autogedal\Retragere\Model\ResourceModel\Retragere\CollectionFactory $retragereCollectionFactory)
    {
        $this->___init();
        parent::__construct($context, $retragereFactory, $dataPersistor, $mail, $emailValidator, $storeManager, $dateTime, $logger, $orderCollectionFactory, $retragereCollectionFactory);
    }

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