package Ecole;

public class Evaluation {

	private double note;
	private Etudiant e;
	private Matiere m;
	
	
	
	
	
	
	public Evaluation(double note, Etudiant e, Matiere m) {
		this.note = note;
		this.e = e;
		this.m = m;
	}
	
	public double getNote() {
		return note;
	}
	public void setNote(double note) {
		this.note = note;
	}
	public Etudiant getE() {
		return e;
	}
	public void setE(Etudiant e) {
		this.e = e;
	}
	public Matiere getM() {
		return m;
	}
	public void setM(Matiere m) {
		this.m = m;
	}
	
	
	
}
