You are here

public function PriceListItemImportForm::__construct in Commerce Pricelist 8.2

Constructs a new PriceListItemImportForm object.

Parameters

\Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager: The entity field manager.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

File

src/Form/PriceListItemImportForm.php, line 49

Class

PriceListItemImportForm

Namespace

Drupal\commerce_pricelist\Form

Code

public function __construct(EntityFieldManagerInterface $entity_field_manager, EntityTypeManagerInterface $entity_type_manager) {
  $this->entityFieldManager = $entity_field_manager;
  $this->entityTypeManager = $entity_type_manager;
}