package exo2.entreprise;

public interface IService {

	String getNom();

	void ajouterPersonnel(String nom, double salaire);
}