13 lines
291 B
Java
13 lines
291 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import org.springframework.data.repository.CrudRepository;
|
||
|
import org.springframework.stereotype.Repository;
|
||
|
|
||
|
@Repository
|
||
|
public interface PersonDao extends CrudRepository<Person, Long> {
|
||
|
|
||
|
public List<Person> findBySurname(String surname);
|
||
|
}
|