idcorpuser.cs
来自「这是一个自动排课软件(包含源码,需求分析,详细设计).希望对你有所帮助.」· CS 代码 · 共 31 行
CS
31 行
using System;
using Entities;
using Search;
using System.Collections;
namespace DAL
{
public interface IDCorpUser
{
int Insert(CorpUser corpUser);
int Insert(IConnection connection, CorpUser corpUser);
int Delete(CorpUser corpUser);
int Delete(IConnection connection, CorpUser corpUser);
int Delete(CorpUserSearcher searcher);
int Delete(IConnection connection, CorpUserSearcher searcher);
int Update(CorpUser corpUser);
int Update(IConnection connection, CorpUser corpUser);
int Update(CorpUserSearcher searcher, CorpUserSearcher newValues);
int Update(IConnection connection, CorpUserSearcher searcher, CorpUserSearcher newValues);
ArrayList Select();
ArrayList Select(IConnection connection);
ArrayList Select(CorpUserSearcher searcher);
ArrayList Select(IConnection connection, CorpUserSearcher searcher);
CorpUser SelectSingle(object pkValue);
CorpUser SelectSingle(IConnection connection,object pkValue);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?