package design.persistence.importexport; import java.io.File; import java.io.IOException; public interface DataHandler { void importData(File file) throws IOException; void exportData(File file) throws IOException; }