Ajout class

This commit is contained in:
Hedi 2021-12-14 00:06:28 +01:00
parent efa6e62984
commit 8e79242d21
3 changed files with 15 additions and 10 deletions

View file

@ -1,4 +1,9 @@
package fr.organizee.repository;
public interface MembreRepository {
import fr.organizee.model.Membre;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface MembreRepository extends JpaRepository<Membre, Integer> {
}