1 /*
2 * GameDAOImpl.java
3 *
4 * Created on February 11, 2003, 10:36 AM
5 */
6
7 package com.mlw.fps.model.business.dao.hibernate;
8
9 import com.mlw.fps.model.business.dao.GameDAO;
10 import com.mlw.fps.model.business.vo.Game;
11 /***
12 *
13 * @author Matthew Wilson
14 */
15 public class GameDAOImpl implements GameDAO
16 {
17
18 /*** Creates a new instance of RoundDAOImpl
19 */
20 public GameDAOImpl()
21 {
22 }
23
24 public void insert(Game game)
25 {
26 Config.save(game);
27 }
28
29 public void update(Game game)
30 {
31 Config.save(game);
32 }
33
34 /* (non-Javadoc)
35 * @see com.mlw.fps.model.business.dao.GameDAO#delete(com.mlw.fps.model.business.vo.Game)
36 */
37 public void delete(Game game)
38 {
39 // TODO Auto-generated method stub
40
41 }
42
43 }
This page was automatically generated by Maven