⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rolerightmanager.cs

📁 办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统办公系统
💻 CS
字号:
//============================================================
// Producnt name:		BoBoARTS.CodeMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2008-9-18 17:06:28
//============================================================

using System;
using System.Collections.Generic;
using System.Text;
using Office.DAL;
using Office.Model;

namespace Office.BLL
{

    public static partial class RoleRightManager
    {
        public static RoleRight AddRoleRight(RoleRight roleRight)
        {
            return RoleRightService.AddRoleRight(roleRight);
        }

        public static Boolean InsertRoleRight(String RoleId, String NodeId)
        {
            return RoleRightService.InsertRoleRight(RoleId, NodeId);
        }
        public static Boolean DeleteRoleRight(String RoleId, String NodeId)
        {
            return RoleRightService.DeleteRoleRight(RoleId, NodeId);
        }
        public static void DeleteRoleRight(RoleRight roleRight)
        {
            RoleRightService.DeleteRoleRight(roleRight);
        }

        public static void DeleteRoleRightById(int roleRightId)
        {
            RoleRightService.DeleteRoleRightByRoleRightID(roleRightId);
        }

		public static void ModifyRoleRight(RoleRight roleRight)
        {
            RoleRightService.ModifyRoleRight(roleRight);
        }
        
        public static IList<RoleRight> GetAllRoleRights()
        {
            return RoleRightService.GetAllRoleRight();
        }

        public static RoleRight GetRoleRightByRoleRightId(int roleRightId)
        {
            return RoleRightService.GetRoleRightByRoleRightID(roleRightId);
        }

        public static IList<RoleRight> GetRoleRightsByRoleId(int RoleId)
        {
            return RoleRightService.GetRoleRightByRoleId(RoleId);
        }
        public static IList<RoleRight> GetRoleRightByRoleIdAndParentNodeId(Int32 roleId,Int32 nodeId)
        {
            return RoleRightService.GetRoleRightByRoleIdAndParentNodeId(roleId, nodeId);
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -