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

📄 idemployee.cs

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

⌨️ 快捷键说明

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