using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace Service { public interface ISysProvinceManager : IGenericManager { IList LoadAllCity(); IList GetCity(string provinceCoe); IList LoadAllCounty(); IList GetCounty(string cityCoe); } }