using LeaRun.Application.Entity.SystemManage; using System.Collections.Generic; namespace LeaRun.Application.IService.SystemManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:佘赐雄 /// 日 期:2015.11.12 16:40 /// 描 述:区域管理 /// public interface IAreaService { #region 获取数据 /// /// 区域列表 /// /// IEnumerable GetList(); /// /// 区域列表 /// /// 节点Id /// 关键字查询 /// IEnumerable GetList(string parentId, string keyword); /// /// 区域实体 /// /// 主键值 /// AreaEntity GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除区域 /// /// 主键 void RemoveForm(string keyValue); /// /// 保存区域表单(新增、修改) /// /// 主键值 /// 区域实体 /// void SaveForm(string keyValue, AreaEntity areaEntity); #endregion } }