package foundation.persist; import java.sql.PreparedStatement; public interface ISavable { void saveData(PreparedStatement stmt, Object... agrs) throws Exception; }