package fr.umlv.examir2;

public class Company {
  public Person createPerson(String name) {
    return new Person(name);
  }
}
