/** * administratie wordt in standaarddatabase bewaard * * @throws IOException */ public void saveToDatabase() throws IOException { dbMediator.save(admin); // todo opgave 4 }
/** * administratie wordt vanuit standaarddatabase opgehaald * * @throws IOException */ public void loadFromDatabase() throws IOException { admin = dbMediator.load(); // todo opgave 4 }