Organize to packages.

This commit is contained in:
Ilkka Seppala
2015-04-15 21:45:14 +03:00
parent 3d3828933c
commit 27ff01de1b
17 changed files with 70 additions and 17 deletions

View File

@ -0,0 +1,9 @@
package com.iluwatar.wizard;
import com.iluwatar.common.Dao;
public interface WizardDao extends Dao<Wizard> {
Wizard findByName(String name);
}