Added findAll methods to service level.

This commit is contained in:
Ilkka Seppala
2015-04-15 21:39:31 +03:00
parent 281f225a54
commit 3d3828933c
4 changed files with 51 additions and 4 deletions

View File

@@ -1,6 +1,14 @@
package com.iluwatar;
import java.util.List;
public interface MagicService {
List<Wizard> findAllWizards();
List<Spellbook> findAllSpellbooks();
List<Spell> findAllSpells();
}