|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\Merchant;
-
-
- use Doctrine\Common\Collections\Collection;
- use Lc\CaracoleBundle\Model\Address\AddressInterface;
- use Lc\CaracoleBundle\Model\Config\TaxRateInterface;
- use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\CaracoleBundle\Model\Setting\MerchantSettingInterface;
- use Lc\SovBundle\Doctrine\Extension\SortableTrait;
- use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity;
- use Lc\SovBundle\Model\User\GroupUserInterface;
- use Lc\SovBundle\Model\User\UserInterface;
-
- interface MerchantInterface
- {
- public function getTitle(): ?string;
-
- public function setTitle(string $title);
-
- public function getDescription(): ?string;
-
- public function setDescription(?string $description);
-
- public function getCreatedBy(): ?UserInterface;
-
- public function setCreatedBy(?UserInterface $createdBy);
-
- public function getUpdatedBy(): ?UserInterface;
-
- public function setUpdatedBy(?UserInterface $updatedBy);
-
- public function getDevAlias(): ?string;
-
- public function setDevAlias(?string $devAlias);
-
- public function getTaxRate(): ?TaxRateInterface;
-
- public function setTaxRate(?TaxRateInterface $taxRate): MerchantInterface;
-
- /**
- * @return Collection|PointSaleInterface[]
- */
- public function getPointSales(): Collection;
-
- public function addPointSale(PointSaleInterface $pointSale): MerchantInterface;
-
- public function removePointSale(PointSaleInterface $pointSale): MerchantInterface;
-
- /**
- * @return Collection|MerchantSettingInterface[]
- */
- public function getSettings(): ?Collection;
-
- public function addSetting(MerchantSettingInterface $merchantSetting
- ): MerchantInterface;
-
- public function removeSetting(MerchantSettingInterface $merchantSetting
- ): MerchantInterface;
-
- public function getAddress(): ?AddressInterface;
-
- public function setAddress(AddressInterface $address): MerchantInterface;
-
- /**
- * @return Collection|GroupUserInterface[]
- */
- public function getGroupUsers(): Collection;
-
- public function addGroupUser(GroupUserInterface $groupUser): MerchantInterface;
-
- public function removeGroupUser(GroupUserInterface $groupUser): MerchantInterface;
-
- /**
- * @return Collection|SectionInterface[]
- */
- public function getSections(): ?Collection;
-
- public function addSection(SectionInterface $section): MerchantInterface;
-
- public function removeSection(SectionInterface $section): MerchantInterface;
-
- public function getMetaTitle(): ?string;
-
- public function setMetaTitle(?string $metaTitle);
-
- public function getMetaDescription(): ?string;
-
- public function setMetaDescription(?string $metaDescription);
-
- public function setOldUrls($oldUrls);
-
- public function getOldUrls(): ?array;
-
- public function getSlug(): ?string;
-
- public function setSlug(?string $slug);
-
- public function getPosition(): float;
-
- public function setPosition(float $position);
-
- public function clearPosition();
-
- public function getStatus(): ?float;
-
- public function setStatus(float $status);
-
- public function getCreatedAt(): ?\DateTimeInterface;
-
- public function setCreatedAt(\DateTimeInterface $createdAt);
-
- public function getUpdatedAt(): ?\DateTimeInterface;
-
- public function setUpdatedAt(\DateTimeInterface $updatedAt);
- }
|