![JAR search and dependency download from the Maven repository](/logo.png)
com.wadpam.survey.service.AnswerService Maven / Gradle / Ivy
/*
* INSERT COPYRIGHT HERE
*/
package com.wadpam.survey.service;
import com.wadpam.open.mvc.MardaoCrudService;
import com.wadpam.survey.dao.DAnswerDao;
import com.wadpam.survey.domain.DAnswer;
import org.springframework.beans.factory.annotation.Autowired;
/**
*
* @author sosandstrom
*/
public class AnswerService extends MardaoCrudService {
protected SurveyService surveyService;
@Override
public Long create(DAnswer domain) {
surveyService.createAnswer(domain);
return domain.getId();
}
@Autowired
public void setDAnswerDao(DAnswerDao dAnswerDao) {
this.dao = dAnswerDao;
}
@Autowired
public void setSurveyService(SurveyService surveyService) {
this.surveyService = surveyService;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy