package somiba.dao;

import java.util.List;

import org.springframework.dao.DataAccessException;

import somiba.domain.Player;


public interface PlayerDao {

	public Player getByName(String name) throws DataAccessException;

    public List<Player> getAll() throws DataAccessException;

    public void save(Player player) throws DataAccessException;

    public void update(Player player) throws DataAccessException;

    public void delete(Player player) throws DataAccessException;

}
