Added new tests that needs to be implemented.

This commit is contained in:
Riley Schneider
2025-12-03 23:04:21 +01:00
parent 995fba6fce
commit f2cc964d39
4 changed files with 87 additions and 27 deletions

View File

@@ -10,6 +10,7 @@ public interface DatabaseManager<E> extends Database {
public void saveObjects(Collection<E> objects) throws SQLException;
public Collection<E> getObjects() throws SQLException;
public void saveObject(E object) throws SQLException;
public E getObject(int id) throws SQLException;
public void deleteObject(int id) throws SQLException;
public E getObject(int taskId) throws SQLException;
public void deleteObject(int taskId) throws SQLException;
public E updateObject(int taskId, E object) throws SQLException;
}