using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.IBaseDAL;
using CY.Model;
using System.Data;
namespace CY.IDAL
{
///
/// 用例注册表-数据库操作接口
///
public interface ISys_Permissions_UserCaseDAL : ICommonDAL, IPaging, IGetAllModel
{
///
/// 根据编号查询单个信息
///
/// 编号
///
Sys_Permissions_UserCase SelectModelByKeyId(int? KeyId);
///
/// 根据菜单编号查询用例
///
/// 菜单编号
///
DataTable SelectList(int? MenuId);
///
/// 根据路径和角色编号去除用例
///
///
///
///
IEnumerable GetNoExitCaseList(string MenuPath, int? RoleId);
///
/// 通过页面创建用例
///
///
///
///
///
bool CreatUserCaseByPage(string menupath, string attrs, string texts);
}
}