📄 paperdetailmanager.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using ExamDAL.Auto_Generated_Code;
using ExamModel.Auto_Generated_Code;
namespace ExamBLL.Auto_Generated_Code
{
public static class PaperDetailManager
{
public static int insertPaperDetail(PaperDetail paperDetail)
{
return PaperDetailService.AddPaperDetail(paperDetail);
}
//返回DataSet
public static DataSet GetAllPaperDetailByPaperId(int id ,string type)
{
return PaperDetailService.GetAllPaperDetailbyId(id, type);
}
//返回PaperDetail对象
public static PaperDetail GetPaperDetailById(int id, string type)
{
return PaperDetailService.GetPaperDetailById(id, type);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -