package exo1.entreprise;

public interface IServiceFactory {
	IService creerService(String nom, String type);
}
