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

📄 idcorprole.cs

📁 这是一个自动排课软件(包含源码,需求分析,详细设计).希望对你有所帮助.
💻 CS
字号:
using System;
using Entities;
using Search;
using System.Collections;
namespace DAL
{
    public interface IDCorpRole
	{
	    int Insert(CorpRole corpRole);
		int Insert(IConnection connection, CorpRole corpRole);
        
		int Delete(CorpRole corpRole);
		int Delete(IConnection connection, CorpRole corpRole);
		int Delete(CorpRoleSearcher searcher);
		int Delete(IConnection connection, CorpRoleSearcher searcher);
        
		int Update(CorpRole corpRole);
		int Update(IConnection connection, CorpRole corpRole);
		int Update(CorpRoleSearcher searcher, CorpRoleSearcher newValues);
		int Update(IConnection connection, CorpRoleSearcher searcher, CorpRoleSearcher newValues);
        
		ArrayList Select();
		ArrayList Select(IConnection connection);
		ArrayList Select(CorpRoleSearcher searcher);
		ArrayList Select(IConnection connection, CorpRoleSearcher searcher);
        
		CorpRole SelectSingle(object pkValue);
        CorpRole SelectSingle(IConnection connection,object pkValue);
	}
}

⌨️ 快捷键说明

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