pieRepository->fetchById($pie_id); $pie->cuotasArray = $this->cuotaService->getVigenteByPie($pie_id); return $pie; } public function add(array $data): Model\Venta\Pie { $pie = $this->pieRepository->create($data); return $this->pieRepository->save($pie); } public function addCuota(array $data): Model\Venta\Cuota { return $this->cuotaService->add($data); } public function edit(Model\Venta\Pie $pie, array $data): Model\Venta\Pie { return $this->pieRepository->edit($pie, $data); } }