mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-20 20:24:47 +00:00
Changed package naming across all examples.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.iluwatar.servicelayer.wizard;
|
||||
|
||||
import com.iluwatar.servicelayer.common.Dao;
|
||||
|
||||
/**
|
||||
*
|
||||
* WizardDao interface.
|
||||
*
|
||||
*/
|
||||
public interface WizardDao extends Dao<Wizard> {
|
||||
|
||||
Wizard findByName(String name);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user