<?php
namespace Eadesigndev\Urgent\Controller\Adminhtml\Index\Aprove;

/**
 * Interceptor class for @see \Eadesigndev\Urgent\Controller\Adminhtml\Index\Aprove
 */
class Interceptor extends \Eadesigndev\Urgent\Controller\Adminhtml\Index\Aprove implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\App\Request\DataPersistorInterface $dataPersistor, \Eadesigndev\Awb\Model\AwbRepository $awbRepository, \Eadesigndev\Awb\Model\AwbFactory $awbFactory, \Eadesigndev\Urgent\Model\GenerateAwb $generateAwb, \Magento\Framework\App\Request\Http $request, \Eadesigndev\Urgent\Model\ShipmentData $shipmentData)
    {
        $this->___init();
        parent::__construct($context, $dataPersistor, $awbRepository, $awbFactory, $generateAwb, $request, $shipmentData);
    }

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