This commit is contained in:
Parpaillax
2024-04-23 16:36:35 +02:00
parent 8d60124175
commit aa25617c81
3 changed files with 12 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ import java.util.List;
public interface UserRepository {
List<UserProfil> findAll();
UserProfil findById(int id);
UserProfil findByUsername(String username);
UserProfil findByUsername(String username, String email);
void save(UserProfil utilisateur);
void delete(int id);
}