Implementation of the user port for JPA processing.

This commit is contained in:
Florian THIERRY
2023-11-30 17:54:01 +01:00
parent cb07b71a88
commit 2bb46499bc
11 changed files with 183 additions and 3 deletions

View File

@@ -10,4 +10,6 @@ public interface UserPort {
Optional<User> findById(UUID userId);
List<User> findAll();
void save(User user);
}