feat(directory) : add CommercialReport entity with dual ownership and author

This commit is contained in:
Matthieu
2026-06-22 11:51:19 +02:00
parent 8d63735bd8
commit 5af529d1b2
5 changed files with 271 additions and 0 deletions
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace App\Module\Directory\Domain\Repository;
use App\Module\Directory\Domain\Entity\CommercialReport;
interface CommercialReportRepositoryInterface
{
public function findById(int $id): ?CommercialReport;
}