
public class ParcoursProfessionnel extends Parcours {
	
	protected String entreprise;
	protected String poste;
	
	
	public ParcoursProfessionnel(String ville, String pays, String periode,
			String entreprise, String poste) {
		super(ville, pays, periode);
		this.entreprise = entreprise;
		this.poste = poste;
	}


	public String getEntreprise() {
		return entreprise;
	}


	public String getPoste() {
		return poste;
	}
	
	
	
	

}
