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

37 lines
1.2 KiB
PHP
Raw Normal View History

2023-07-28 16:22:20 -04:00
<?php
namespace Incoviba\Service;
2023-10-13 10:45:21 -03:00
use Incoviba\Common\Implement;
2023-07-28 16:22:20 -04:00
use Incoviba\Repository;
2023-10-13 10:45:21 -03:00
use Incoviba\Model;
2023-07-28 16:22:20 -04:00
class Proyecto
{
2023-10-13 10:45:21 -03:00
public function __construct(
protected Repository\Proyecto $proyectoRepository,
protected Repository\Proyecto\EstadoProyecto $estadoProyecto
) {}
2023-07-28 16:22:20 -04:00
public function getVendibles(): array
{
return $this->proyectoRepository->fetchAllActive();
}
2023-11-22 19:08:19 -03:00
public function getEscriturando(): array
{
return $this->proyectoRepository->fetchAllEscriturando();
}
2023-10-13 10:45:21 -03:00
public function getById(int $venta_id): Model\Proyecto
{
return $this->process($this->proyectoRepository->fetchById($venta_id));
}
protected function process(Model\Proyecto $proyecto): Model\Proyecto
{
$proyecto->addFactory('estados', (new Implement\Repository\Factory())
->setCallable([$this->estadoProyecto, 'fetchByProyecto'])
->setArgs([$proyecto->id]));
$proyecto->addFactory('currentEstado', (new Implement\Repository\Factory())
->setCallable([$this->estadoProyecto, 'fetchCurrentByProyecto'])
->setArgs([$proyecto->id]));
return $proyecto;
}
2023-07-28 16:22:20 -04:00
}