package Model;

public class employe {
	private String nom;
	private String prenom;
	private int telephone;
	private int salaire;
	private int temps_de_travail;
	

	public employe(String n,String p,int t,int s,int tdt)
	{
		
		this.nom=n;
		this.prenom=p;
		this.telephone=t;
		this.salaire=s;
		this.temps_de_travail=tdt;
		}


	@Override
	public String toString() {
		return "employe [nom=" + nom + ", prenom=" + prenom + ", telephone="
				+ telephone + ", salaire=" + salaire + ", temps_de_travail="
				+ temps_de_travail + "]";
	}

	
	
	
}
