22 lines
531 B
C#
22 lines
531 B
C#
using HL_FristAidPlatform_DataBase;
|
|
using HL_FristAidPlatform_Help;
|
|
using HL_FristAidPlatform_IDataBase;
|
|
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_Bussiness.Service
|
|
{
|
|
public class T_Base_PathogenyBLL
|
|
{
|
|
private IT_Base_Pathogeny IService = new T_Base_PathogenyDB();
|
|
|
|
/// <summary>
|
|
/// 因病列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public TableModel<T_Base_Pathogeny> GetList()
|
|
{
|
|
return IService.GetList();
|
|
}
|
|
}
|
|
}
|