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

📄 paperdetailmanager.cs

📁 在线考试系统完整版源码(C#&Access) 该考试系统为一同学毕业设计
💻 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 + -