This commit is contained in:
2023-11-29 22:21:46 -03:00
parent 9991b7c6a3
commit 17f93dcd34
6 changed files with 93 additions and 0 deletions

View File

@ -27,4 +27,8 @@ class Pie
{
return $this->cuotaService->add($data);
}
public function edit(Model\Venta\Pie $pie, array $data): Model\Venta\Pie
{
return $this->pieRepository->edit($pie, $data);
}
}