package com.zetcode.service; import com.zetcode.model.City; import java.util.List; public interface ICityService { List findAll(); }