package exo1.entreprise;

public interface IService {
	String getNom();

	void setNom(String nom);

}