20 lines
388 B
C#
20 lines
388 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using Domain;
|
|||
|
|
|
|||
|
|
namespace Service
|
|||
|
|
{
|
|||
|
|
public interface ISysProvinceManager : IGenericManager<SysProvince>
|
|||
|
|
{
|
|||
|
|
IList<SysCity> LoadAllCity();
|
|||
|
|
|
|||
|
|
IList<SysCity> GetCity(string provinceCoe);
|
|||
|
|
|
|||
|
|
IList<SysCounty> LoadAllCounty();
|
|||
|
|
|
|||
|
|
IList<SysCounty> GetCounty(string cityCoe);
|
|||
|
|
}
|
|||
|
|
}
|