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

📄 sysfunmanager.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:42
//============================================================

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

namespace Office.BLL
{

    public static partial class SysFunManager
    {
        public static SysFun AddSysFun(SysFun sysFun)
        {
            return SysFunService.AddSysFun(sysFun);
        }

        public static void DeleteSysFun(SysFun sysFun)
        {
            SysFunService.DeleteSysFun(sysFun);
        }

        public static void DeleteSysFunById(int nodeId)
        {
            SysFunService.DeleteSysFunByNodeId(nodeId);
        }

		public static void ModifySysFun(SysFun sysFun)
        {
            SysFunService.ModifySysFun(sysFun);
        }
        
        public static IList<SysFun> GetAllSysFuns()
        {
            return SysFunService.GetAllSysFuns();
        }

        public static SysFun GetSysFunByNodeId(int nodeId)
        {
            return SysFunService.GetSysFunByNodeId(nodeId);
        }

        public static List<SysFun> GetSysFunByParentId(int pId)
        {
            return SysFunService.GetSysFunsByParentId(pId);
        }
        public static IList<SysFun> GetAllParentNodeInfo()
        {
            return SysFunService.GetAllParentNodInfo();
        }
        public static IList<SysFun> GetSysFunByParentNodeId(Int32 ParentNodeId)
        {
            return SysFunService.GetSysFunByParentNodeId(ParentNodeId);
        }
    }
}

⌨️ 快捷键说明

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