Ajout article v3

This commit is contained in:
jleroy
2024-04-24 12:14:46 +02:00
parent 79fc4ce674
commit 6dea07d370
10 changed files with 222 additions and 103 deletions

View File

@@ -0,0 +1,8 @@
package fr.eni.enchere.dal;
import fr.eni.enchere.bo.Retrait;
public interface RetraitRepository {
Retrait findById(int id);
void save(Retrait retrait);
}