Create CRUD persistence

Report a typo

Complete the code below in order to implement a CRUD repository in the persistence layer.

Java
@Repository
public interface EmployeeRepository extends ___________<Employee, Long> {
    Employee findEmployeeById(Long id);
}
Kotlin
@Repository
interface EmployeeRepository : ___________<Employee, Long> {
    fun findEmployeeById(id: Long): Employee
}
Select one option from the list
___

Create a free account to access the full topic