This repository has been archived on 2022-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
LinkDitch/1-Adapter/src/main/java/persistence/CSVCategoryPersistenceAdapter.java

20 lines
335 B
Java
Raw Normal View History

2022-04-22 08:41:00 +02:00
package persistence;
import category.Category;
import category.CategoryPersistenceAdapter;
import java.util.Set;
public class CSVCategoryPersistenceAdapter implements CategoryPersistenceAdapter {
@Override
public Set<Category> getAll() {
return null;
}
@Override
public Boolean add(Category category) {
return null;
}
}