WellCommerce\Bundle\CoreBundle\DataSet\AbstractDataSet::__construct PHP Метод

__construct() публичный Метод

AbstractDataSet constructor.
public __construct ( WellCommerce\Component\DataSet\Repository\DataSetAwareRepositoryInterface $repository, WellCommerce\Component\DataSet\Manager\DataSetManagerInterface $manager, Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher )
$repository WellCommerce\Component\DataSet\Repository\DataSetAwareRepositoryInterface
$manager WellCommerce\Component\DataSet\Manager\DataSetManagerInterface
$eventDispatcher Symfony\Component\EventDispatcher\EventDispatcherInterface
    public function __construct(DataSetAwareRepositoryInterface $repository, DataSetManagerInterface $manager, EventDispatcherInterface $eventDispatcher)
    {
        $this->repository = $repository;
        $this->manager = $manager;
        $this->eventDispatcher = $eventDispatcher;
        $this->columns = new ColumnCollection();
        $this->cacheOptions = new CacheOptions();
    }