📄 ifun.cs
字号:
using System;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using DataAccess;
using Forms;
namespace BusinessRule
{
/// <summary>
/// IFun 的摘要说明。
/// </summary>
///
public interface IFun //功能接口
{
//获得班级编号,返回班级实例
ClassTeam GetClaInfoByClaID(string claID);
//获得学生编号,返回学生实例
Student GetStuInfoByStuID(int stuID);
//获得学生编号,返回学生基本信息表
DataTable GetStuInfoTableByStuID(int stuID);
//获得学生编号,返回学生本学期的缺勤信息,如果已经毕业,则返回空
DataTable GetStuAFDInfoByStuID(int stuID);
//获得学生信息(编号,或者编号和班级编号,或者姓名和班级编号),
//返回学生某学期的平时考试信息表,
//如果只传入学员编号,则返回所有该学员的考试信息
DataTable GetStuExamInfoByStuInfo(int stuID);
DataTable GetStuExamInfoByStuInfo(int stuID,string claID);
DataTable GetStuExamInfoByStuInfo(string stuName,string claID);
//获得班主任编号,返回曾经管理过的班级实例的集合
ArrayList GetClassesInfoByTeaID(string teaID);
//获得班主任编号,返回曾经管理过的班级的信息表
DataTable GetClassesTableByTeaID(string teaID);
//获得教师编号,返回教师实例
Teacher GetTeaInfoByTeaID(string teaID);
//获得教师编号,返回教师缺勤信息表
DataTable GetTeaAFDInfo(string teaID);
DataTable GetTeaAFDInfo(string AfterDate,string teaID);
//返回所有在职老师的基本信息表
DataTable GetTeaIn_ServiceInfo();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -