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

📄 patientbll.cs

📁 不错的一个做的医院管理系统源码
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -