View Javadoc
1 package net.mlw.fball.dao;
2
3 import net.mlw.fball.bo.Player;
4 import net.mlw.fball.bo.SeasonStats;
5
6 /***
7 *
8 * @author Matthew L. Wilson
9 * @version $Revision: 1.4 $ $Date: 2004/04/01 21:51:06 $
10 */
11 public interface SeasonStatsDao
12 {
13 SeasonStats findById(Player player, Integer season);
14 SeasonStats save(SeasonStats stats);
15 }
This page was automatically generated by Maven