idcorprole.cs
来自「这是一个自动排课软件(包含源码,需求分析,详细设计).希望对你有所帮助.」· CS 代码 · 共 31 行
CS
31 行
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 + =
减小字号Ctrl + -
显示快捷键?