Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public function __construct(OrderService $orderService, PaginatorControlFactory $paginatorControlFactory)
 {
     parent::__construct();
     $this->orderService = $orderService;
     $this->paginatorControlFactory = $paginatorControlFactory;
 }
Ejemplo n.º 3
0
 public function __construct(CategoryService $categoryService, ManageCategoriesFormFactory $manageCategoriesFormFactory)
 {
     parent::__construct();
     $this->categoryService = $categoryService;
     $this->manageCategoriesFormFactory = $manageCategoriesFormFactory;
 }
Ejemplo n.º 4
0
 public function __construct(ShipmentService $shipmentService)
 {
     parent::__construct();
     $this->shipmentService = $shipmentService;
 }
Ejemplo n.º 5
0
 public function __construct(CategoriesFormControlFactory $categoriesFormControlFactory, CategoryService $categoryService)
 {
     parent::__construct();
     $this->categoriesFormControlFactory = $categoriesFormControlFactory;
     $this->categoryService = $categoryService;
 }
Ejemplo n.º 6
0
 public function __construct(CategoryService $categoryService)
 {
     parent::__construct();
     $this->categoryService = $categoryService;
 }
Ejemplo n.º 7
0
 public function __construct(ShipmentService $shipmentService, ShipmentFormControlFactory $shipmentFormControlFactory)
 {
     parent::__construct();
     $this->shipmentFormControlFactory = $shipmentFormControlFactory;
     $this->shipmentService = $shipmentService;
 }
Ejemplo n.º 8
0
 public function __construct()
 {
     parent::__construct();
 }