|
12345678910111213141516171819202122 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\Product;
-
-
- use App\Entity\Product\ProductFamily;
- use App\Entity\Section\Section;
-
- interface ProductFamilySectionPropertyInterface
- {
- public function getSection(): ?Section;
-
- public function setSection(?Section $section): ProductFamilySectionPropertyInterface;
-
- public function getProductFamily(): ?ProductFamily;
-
- public function setProductFamily(?ProductFamily $productFamily): ProductFamilySectionPropertyInterface;
-
- public function getStatus(): ?float;
-
- public function setStatus(float $status): ProductFamilySectionPropertyInterface;
- }
|