Files
oficial/app/src/Service/Proyecto.php

14 lines
280 B
PHP
Raw Normal View History

2023-07-28 16:22:20 -04:00
<?php
namespace Incoviba\Service;
use Incoviba\Repository;
class Proyecto
{
public function __construct(protected Repository\Proyecto $proyectoRepository) {}
public function getVendibles(): array
{
return $this->proyectoRepository->fetchAllActive();
}
}