summaryrefslogtreecommitdiff
path: root/src/main/java/design/persistence/importexport/DataHandler.java
blob: 59df9be56f6340ab71591ff8031b51e841a5938b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;
}