PersonneRepository.java
319 Bytes
package etunicorn;
import org.springframework.data.repository.CrudRepository;
/**
* Created by geoffrey on 29/01/17.
*/
public interface PersonneRepository extends CrudRepository<Personne, Long> {
Personne findByLogin(String login);
Personne findByCarte(String carte);
Personne findById(Integer id);
}