Unit test for Adresse is done, unit test for clients is WIP 80%

This commit is contained in:
Olivier PARPAILLON
2025-07-10 16:58:34 +02:00
parent 5ef3f25372
commit 9fbfb957da
8 changed files with 443 additions and 13 deletions

View File

@@ -4,6 +4,9 @@ import fr.eni.demo.bo.Client;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface ClientRepository extends JpaRepository<Client, Long> {
List<Client> findByPrenomIgnoreCaseContainingOrNomIgnoreCaseContaining(String prenom, String nom);
}