Example #1
0
 public function __construct(CartFormFactory $cartFormFactory, CurrentCartService $currentCartService, CartService $cartService, ShipmentService $shipmentService)
 {
     parent::__construct();
     $this->cartFormFactory = $cartFormFactory;
     $this->currentCartService = $currentCartService;
     $this->cartService = $cartService;
     $this->shipmentService = $shipmentService;
 }
Example #2
0
 public function __construct(CurrentCartService $currentCartService, OrderService $orderService, ShipmentService $shipmentService, PaymentFormFactory $paymentFormFactory)
 {
     parent::__construct();
     $this->paymentFormFactory = $paymentFormFactory;
     $this->orderService = $orderService;
     $this->currentCartService = $currentCartService;
     $this->shipmentService = $shipmentService;
 }
Example #3
0
 public function __construct(ShipmentFormFactory $shipmentFormFactory, CurrentCartService $currentCartService, CartService $cartService, ShipmentService $shipmentService, User $user)
 {
     parent::__construct();
     $this->shipmentFormFactory = $shipmentFormFactory;
     $this->currentCartService = $currentCartService;
     $this->cartService = $cartService;
     $this->shipmentService = $shipmentService;
     $this->user = $user;
 }
Example #4
0
 public function __construct(AddressFormFactory $addressFormFactory, CurrentCartService $currentCartService)
 {
     parent::__construct();
     $this->addressFormFactory = $addressFormFactory;
     $this->currentCartService = $currentCartService;
 }