Last active
August 20, 2023 13:17
-
-
Save azizkale/3b98d956d1804abf249e490782b73412 to your computer and use it in GitHub Desktop.
the article - How to implement Hibernate in Spring Boot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.kale.hibernatetutorial.dao; | |
import com.kale.hibernatetutorial.model.Employee; | |
import java.util.List; | |
public class EmployeeRepositoryImpl implements EmployeeRepository { | |
@Override | |
public List<Employee> findAll() { | |
return null; | |
} | |
@Override | |
public Employee findById(int id) { | |
return null; | |
} | |
@Override | |
public void create(Employee employee) { | |
} | |
@Override | |
public void delete(int id) { | |
} | |
@Override | |
public Employee update(Employee employee) { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment