2015-05-31 11:55:18 +03:00
|
|
|
package com.iluwatar.servicelayer.spellbook;
|
2015-04-15 21:45:14 +03:00
|
|
|
|
2015-05-31 11:55:18 +03:00
|
|
|
import com.iluwatar.servicelayer.common.Dao;
|
2015-04-14 23:38:50 +03:00
|
|
|
|
2015-04-15 22:29:04 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* SpellbookDao interface.
|
|
|
|
*
|
|
|
|
*/
|
2015-04-14 23:38:50 +03:00
|
|
|
public interface SpellbookDao extends Dao<Spellbook> {
|
2015-04-15 21:11:12 +03:00
|
|
|
|
|
|
|
Spellbook findByName(String name);
|
2015-04-14 23:38:50 +03:00
|
|
|
|
|
|
|
}
|