using Learun.Util;
using System.Collections.Generic;
namespace Learun.Application.Organization
{
///
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期:2017.03.04
/// 描 述:角色管理
///
public interface RoleIBLL
{
#region 获取数据
///
/// 获取角色数据列表
///
///
List GetList(string ProjectId);
///
/// 获取角色数据列表
///
/// 关键字
///
List GetList(string keyword,string ProjectId);
///
/// 获取分页数据
///
/// 分页参数
/// 查询参数
///
List GetPageList(Pagination pagination, string queryJson);
///
/// 获取角色数据列表
///
/// 主键串
///
IEnumerable GetListByRoleIds(string roleIds);
///
/// 获取实体数据
///
/// 主键
///
RoleEntity GetEntity(string keyValue);
#endregion
#region 提交数据
///
/// 虚拟删除角色
///
/// 主键
void VirtualDelete(string keyValue);
///
/// 保存角色(新增、修改)
///
/// 主键值
/// 角色实体
///
void SaveEntity(string keyValue, ref RoleEntity roleEntity);
#endregion
}
}