package com.moscepa.repository;

import com.moscepa.entity.Etudiant;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface EtudiantRepository extends JpaRepository<Etudiant, Long> {
    // Fournit automatiquement findById, save, delete, etc.
}
