patch connexion

This commit is contained in:
Parpaillax
2024-04-23 17:00:07 +02:00
parent de2949417d
commit 03029c73f6
2 changed files with 5 additions and 11 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, String email);
UserProfil findByUsername(String username);
void save(UserProfil utilisateur);
void delete(int id);
}