paperdetailmanager.cs
来自「.net环境下的在线考试系统」· CS 代码 · 共 30 行
CS
30 行
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 + =
减小字号Ctrl + -
显示快捷键?