getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }"> getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }"> getScoreList(ScoreVO vo) { return scoreDAO.getScoreList(vo); } }">
package com.score.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.score.bean.ScoreVO;
import com.score.dao.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);
}
}