
public class CLIENT {
private float CIN;
private String Nom; 
private String Prenom;
private float tel;

	public CLIENT(float CIN,String Nom,String Prenom,float tel){
	
		this.CIN=CIN;
		this.Nom=Nom;
		this.Prenom=Prenom;
		this.tel=tel;
	
}

	public float getCIN() {
		return CIN;
	}

	public void setCIN(float cIN) {
		CIN = cIN;
	}

	public String getNom() {
		return Nom;
	}

	public void setNom(String nom) {
		Nom = nom;
	}

	public String getPrenom() {
		return Prenom;
	}

	public void setPrenom(String prenom) {
		Prenom = prenom;
	}

	public float getTel() {
		return tel;
	}

	public void setTel(float tel) {
		this.tel = tel;
	}
	public void AFFICHER(){
	System.out.println("CIN : "+CIN);
	System.out.println("Nom : "+Nom);
	System.out.println("Prenom : "+Prenom);
	System.out.println("tel : "+tel);
	
	
	}
}