refactor package structure of Adapter.persistence
continuous-integration/drone/push Build is passing Details

This commit is contained in:
qvalentin 2022-04-22 12:54:04 +02:00
parent c4ef8b9181
commit bc0aad431f
Signed by: qvalentin
GPG Key ID: C979FA1EAFCABF1C
2 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
package persistence; package persistence.category;
import abstraction.PersistenceAdapter; import abstraction.PersistenceAdapter;
import category.Category; import category.Category;
@ -13,12 +13,11 @@ public class CSVCategoryPersistenceAdapter implements PersistenceAdapter<Categor
} }
@Override @Override
public Boolean remove(Category value) { public void remove(Category value) {
return null;
} }
@Override @Override
public Boolean add(Category category) { public void add(Category category) {
return null;
} }
} }

View File

@ -1,4 +1,4 @@
package persistence; package persistence.category;
public record CategoryEntity(String name, int id) { public record CategoryEntity(String name, int id) {