Client controller

This commit is contained in:
jleroy2023
2025-07-16 09:48:03 +02:00
parent c6a0272dc0
commit b330211f71
2 changed files with 82 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface ClientRepository extends JpaRepository<Client, Long> {