package com.infinite.focus.server.tests;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.GenericGenerator;


/**
 * 
 * @author Saboor
 * 
 *
 */

public class TestResultDataWrapper {
	
	private long lesson_id; 
	
 	private long test_id;
 	
 	private long student_id;
 	
 	private List<Answer> answers = new ArrayList<>();
 	
 	
	public TestResultDataWrapper() {
		super();
	}


	public long getTest_id() {
		return test_id;
	}


	public void setTest_id(long test_id) {
		this.test_id = test_id;
	}


	public long getStudent_id() {
		return student_id;
	}


	public void setStudent_id(long student_id) {
		this.student_id = student_id;
	}


	public List<Answer> getAnswers() {
		return answers;
	}

	public void setAnswers(List<Answer> answers) {
		this.answers = answers;
	}


	public long getLesson_id() {
		return lesson_id;
	}


	public void setLesson_id(long lesson_id) {
		this.lesson_id = lesson_id;
	}

}