#region
using System;
using System.Data;
#endregion
namespace CSFrameworkV5.Interfaces
{
///
/// 角色数据层的桥接接口
///
public interface IBridge_UserRole
{
///
/// 删除用户角色
///
/// 用户编号
/// 角色编号
///
bool DeleteUserRole(string account, string roleID);
///
/// 搜索用户角色
///
/// 用户编号
/// 角色编号
/// 角色起始有效期
/// 角色截止有效期
///
DataTable SearchUserRole(string account, string roleID,
DateTime expireDateFrom, DateTime expireDateTo);
}
}