23 lines
511 B
C#
23 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SOH.Entities;
|
|
using EAS.Services;
|
|
|
|
namespace SOH.BLL
|
|
{
|
|
[ServiceObject("科室疾病维护")]
|
|
[ServiceBind(typeof(It_ksjb))]
|
|
public class t_ksjbBll : It_ksjb
|
|
{
|
|
public List<Entities.t_ksjb> GetksjbByjbbm(int jbbm)
|
|
{
|
|
using (DbEntities db = new DbEntities())
|
|
{
|
|
return db.t_ksjbs.Where(t => t.jbbm == jbbm).ToList();
|
|
}
|
|
}
|
|
}
|
|
}
|