Page admin final no css

This commit is contained in:
jleroy
2024-04-26 13:51:17 +02:00
parent b970ad4c30
commit ff7df78e31
10 changed files with 53 additions and 6 deletions

View File

@@ -45,6 +45,11 @@ public class UserServiceImpl implements UserService {
userRepository.save(utilisateur);
}
@Override
public void setCredit(float credit, int id) {
userRepository.updateCredit(credit, id);
}
@Override
public void deleteUtilisateur(int id) {
userRepository.delete(id);