/**
 * @author sandy
 */

 // create new vos
function Answer() {
	
	var questionId = '';
	var answer = '';	
	var answerText = '';
	this.init = init;
	
	function init(questionId, answer, answerText) {		
		this.questionId = questionId;	
		this.answer = answer;
		this.answerText = answerText;
	}
	
	function getAnswer(questionId){
		
	}
		
}