package Model;

public class fournisseur {
	private String nom_s;
	private int telephone;
	private String adresse;
	private int code_f;


	public fournisseur(String n,int t,String a ,int cf)
	{
		this.nom_s=n;
		this.telephone=t;
		this.adresse=a;
		this.code_f=cf;
		}
	
	
	@Override
	public String toString() {
		return "fournisseur [nom_s=" + nom_s + ", telephone=" + telephone
				+ ", adresse=" + adresse + ", code_f=" + code_f + "]";
	}

}
