patientbll.cs
来自「不错的一个做的医院管理系统源码」· CS 代码 · 共 50 行
CS
50 行
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using Youzi.Model;
using Youzi.DAL;
namespace Youzi.BLL
{
public class PatientBLL
{
public int InsertPatient(PatientInfo entity)
{
PatientDAL dal = new PatientDAL();
return dal.InsertPatient(entity);
}
public int Delete(int id)
{
PatientDAL dal = new PatientDAL();
return dal.Delete(id);
}
public DataSet Select()
{
PatientDAL dal = new PatientDAL();
return dal.Select();
}
public DataSet SelectRegisterType()
{
PatientDAL dal = new PatientDAL();
return dal.SelectRegisterType();
}
public DataSet SelectPatient()
{
PatientDAL dal = new PatientDAL();
return dal.SelectPatient();
}
public DataSet SelectPatientToday(string StartID, string EndID)
{
PatientDAL dal = new PatientDAL();
return dal.SelectPatientToday(StartID,EndID);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?