Exemplo n.º 1
0
 public function __construct($product, $store, $designs = array())
 {
     $this->__product = $product;
     parent::__construct($store);
     if (!empty($designs)) {
         $this->__designs = $designs;
         $this->addDesigns();
     }
 }
Exemplo n.º 2
0
 public function __construct($email, $password, $store = null)
 {
     $this->__email = $email;
     $this->__password = $password;
     parent::__construct($store);
 }
Exemplo n.º 3
0
 public function __construct($imagePath, $store)
 {
     $this->__imagePath = $imagePath;
     parent::__construct($store);
     $this->create();
 }
Exemplo n.º 4
0
 public function __construct($merchandiseId, $store)
 {
     $this->__merchandiseId = $merchandiseId;
     parent::__construct($store);
     $this->create();
 }