mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-20 22:23:52 +00:00
Reformat rest of the design patterns - Issue #224
This commit is contained in:
@@ -11,13 +11,13 @@ import java.util.List;
|
||||
*/
|
||||
public interface Dao<E extends BaseEntity> {
|
||||
|
||||
E find(Long id);
|
||||
|
||||
void persist(E entity);
|
||||
|
||||
E merge(E entity);
|
||||
|
||||
void delete(E entity);
|
||||
|
||||
List<E> findAll();
|
||||
E find(Long id);
|
||||
|
||||
void persist(E entity);
|
||||
|
||||
E merge(E entity);
|
||||
|
||||
void delete(E entity);
|
||||
|
||||
List<E> findAll();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user