![JAR search and dependency download from the Maven repository](/logo.png)
com.wadpam.survey.service.VersionService Maven / Gradle / Ivy
package com.wadpam.survey.service;
import com.wadpam.open.mvc.MardaoCrudService;
import com.wadpam.survey.dao.DVersionDao;
import com.wadpam.survey.domain.DSurvey;
import com.wadpam.survey.domain.DVersion;
import org.springframework.beans.factory.annotation.Autowired;
/**
*
* @author os
*/
public class VersionService extends MardaoCrudService {
public Iterable queryBySurveyId(Long surveyId) {
final DSurvey survey = new DSurvey();
survey.setId(surveyId);
return dao.queryBySurvey(survey);
}
@Autowired
public void setDVersionDao(DVersionDao dVersionDao) {
this.dao = dVersionDao;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy