This repository has been archived on 2022-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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;
}
}