BAEL - 2829

Fixed the compilation error
This commit is contained in:
TINO
2019-03-29 11:08:14 +03:00
parent 90eb4ba359
commit ee06fce6f8
2 changed files with 16 additions and 16 deletions
@@ -2,8 +2,8 @@ package com.baeldung.dao.repositories;
import org.springframework.data.jpa.repository.JpaRepository;
import com.baeldung.domain.Person;
import com.baeldung.domain.Employee;
public interface PersonRepository extends JpaRepository<Person, Long> {
public interface EmployeeRepository extends JpaRepository<Employee, Long> {
}