public function __construct(ProductFormControlFactory $productFormControlFactory, ProductService $productService, ProductImageService $productImageService, CategoryService $categoryService) { parent::__construct(); $this->productFormControlFactory = $productFormControlFactory; $this->productService = $productService; $this->productImageService = $productImageService; $this->categoryService = $categoryService; }
public function __construct(OrderService $orderService, PaginatorControlFactory $paginatorControlFactory) { parent::__construct(); $this->orderService = $orderService; $this->paginatorControlFactory = $paginatorControlFactory; }
public function __construct(CategoryService $categoryService, ManageCategoriesFormFactory $manageCategoriesFormFactory) { parent::__construct(); $this->categoryService = $categoryService; $this->manageCategoriesFormFactory = $manageCategoriesFormFactory; }
public function __construct(ShipmentService $shipmentService) { parent::__construct(); $this->shipmentService = $shipmentService; }
public function __construct(CategoriesFormControlFactory $categoriesFormControlFactory, CategoryService $categoryService) { parent::__construct(); $this->categoriesFormControlFactory = $categoriesFormControlFactory; $this->categoryService = $categoryService; }
public function __construct(CategoryService $categoryService) { parent::__construct(); $this->categoryService = $categoryService; }
public function __construct(ShipmentService $shipmentService, ShipmentFormControlFactory $shipmentFormControlFactory) { parent::__construct(); $this->shipmentFormControlFactory = $shipmentFormControlFactory; $this->shipmentService = $shipmentService; }
public function __construct() { parent::__construct(); }