1 /*
2 * PlayerDAO.java
3 *
4 * Created on February 11, 2003, 10:33 AM
5 */
6
7 package com.mlw.fps.model.business.dao;
8
9 import com.mlw.fps.model.business.vo.Game;
10
11 /***
12 *
13 * @author Matthew Wilson
14 */
15 public interface GameDAO
16 {
17 public void insert(Game game);
18 public void update(Game game);
19 public void delete(Game game);
20 }
This page was automatically generated by Maven