getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }"> getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }"> getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }">
package com.score.template;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.score.template.ScoreVO;
import com.score.template.ScoreDAO;

@Service("ScoreService")
public class ScoreServiceImpl implements ScoreService{
	
	@Autowired
	private ScoreDAO scoreDAO;

	@Override
	public int insertScore(ScoreVO vo) {
		return scoreDAO.insertScore(vo);
	}

	@Override
	public List<ScoreVO> getScoreList(ScoreVO vo) {
		return scoreDAO.getScoreList(vo);
	}
	
	
	
}