using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using WMS.Model.Base; using WMS.SqlServerData.SystemManageData; using WMS.IData; using WMS.Model.SystemManage; namespace WMS.Business.SystemManage { public class BussSysRole:IBussFactory { /// /// 获取角色信息 /// /// Role Name /// public List GetRole(string strRoleId) { return DataProvider.Instance.SysRole.GetRole(strRoleId); } /// /// 获取角色对应的用户信息 /// /// Role Name /// public List GetRoleUser(string strRoleId) { return DataProvider.Instance.SysRole.GetRoleUser(strRoleId); } /// /// 获取角色对象的功能操作 /// /// Role Name /// public List GetRoleMenuFun(string strRoleId, string strType) { return DataProvider.Instance.SysRole.GetRoleMenuFun(strRoleId, strType); } ///// ///// 获取角色对象的功能操作 ///// ///// Role Name ///// //public DataSet GetRoleMenuFun(string strRoleId) //{ // return DataProvider.Instance.SysRole.GetRoleMenuFun(strRoleId); //} } }