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