import java.util.List; public interface iData { public List getEmployees(); public void insertEmployee(String name, String city); }