public abstract class EmployeeFactory { public abstract Employee createEmployee(String name, String city, double slaray); }