#region
using System.Data;
#endregion
namespace CSFrameworkV5.Interfaces
{
///
/// 客户数据层桥接接口
///
public interface IBridge_CustomModule
{
///
/// 删除快捷方式
///
/// 用户帐号
/// 功能窗体全名
/// 菜单名
///
bool Delete(string Account, string FormFullName, string MenuName);
///
/// 是否已建立快捷方式
///
/// 用户帐号
/// 功能窗体全名
/// 菜单名
///
bool Exist(string Account, string FormFullName, string MenuName);
///
/// 根据账户名称获得自定义常用功能列表
///
/// 用户帐号
///
DataTable GetCustomAction(string Account);
DataTable GetMenuItems();
///
/// 获取排序編號
///
/// 用户帐号
///
DataTable GetRowIndexAOrderID(string Account, int maxRows, int maxCols);
bool ResetCustomActions(string Account);
}
}