12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- class ProductDomain
- {
-
- private $productName;
-
- private $domainName;
-
- public function __construct($product, $domain)
- {
- $this->productName = $product;
- $this->domainName = $domain;
- }
-
- public function getProductName()
- {
- return $this->productName;
- }
-
- public function setProductName($productName)
- {
- $this->productName = $productName;
- }
-
- public function getDomainName()
- {
- return $this->domainName;
- }
-
- public function setDomainName($domainName)
- {
- $this->domainName = $domainName;
- }
- }
|