Ajout article final

This commit is contained in:
jleroy
2024-04-25 10:03:01 +02:00
parent 747c038050
commit c4020f1612
13 changed files with 170 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
package fr.eni.enchere.dal;
import fr.eni.enchere.bo.Enchere;
import java.util.List;
public interface EnchereRepository {
Enchere findByIdUserAndIdArticle(int idUser, int idArticle);
List<Enchere> findByIdUser(int idUser);
List<Enchere> findByIdArticle(int idArticle);
void save(Enchere enchere);
}