Constructs a new \Drupal\views_ui\Controller\ViewsUIController object.
\Drupal\Core\Entity\EntityManager $entity_manager: The Entity manager.
\Drupal\views\ViewsData views_data: The Views data cache object.
\Drupal\user\TempStoreFactory $temp_store_factory: The factory for the temp store object.
public function __construct(EntityManager $entity_manager, ViewsData $views_data, TempStoreFactory $temp_store_factory) {
$this->entityManager = $entity_manager;
$this->viewsData = $views_data;
$this->tempStore = $temp_store_factory
->get('views');
}