public interface GenericRepository<T>
| Modifier and Type | Method and Description |
|---|---|
void |
delete(T entity) |
java.lang.Iterable<T> |
findAll() |
T |
findBy(java.util.Map<java.lang.String,java.lang.Object> properties) |
T |
findBy(java.lang.String propertyName,
java.lang.Object propertyValue) |
void |
save(T entity) |