You are here

public function InvoiceItemTypesAdminController::__construct in Commerce Invoice 8.2

Constructs a new LicenseTypesAdminController object.

Parameters

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info: The entity type bundle info service.

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

File

src/Controller/InvoiceItemTypesAdminController.php, line 41

Class

InvoiceItemTypesAdminController
Provides the invoice item type admin controller.

Namespace

Drupal\commerce_invoice\Controller

Code

public function __construct(EntityTypeBundleInfoInterface $entity_type_bundle_info, EntityTypeManagerInterface $entity_type_manager) {
  $this->entityTypeBundleInfo = $entity_type_bundle_info;
  $this->entityTypeManager = $entity_type_manager;
}