No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

26 líneas
767B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\PointSale;
  3. use Lc\CaracoleBundle\Container\PointSale\PointSaleSectionContainer;
  4. use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
  5. use Lc\CaracoleBundle\Model\PointSale\PointSaleSectionInterface;
  6. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  7. use Lc\SovBundle\Factory\AbstractFactory;
  8. class PointSaleSectionFactory extends AbstractFactory
  9. {
  10. public function create(PointSaleInterface $pointSale, SectionInterface $section): PointSaleSectionInterface
  11. {
  12. $class = PointSaleSectionContainer::getEntityFqcn();
  13. $pointSaleSection = new $class;
  14. $pointSaleSection->setPointSale($pointSale);
  15. $pointSaleSection->setSection($section);
  16. return $pointSaleSection;
  17. }
  18. }