StableVersion4.3/HL_FristAidPlatform_Bussiness/Service/T_Service_ChestPain_Patient...

32 lines
1.0 KiB
C#

using HL_FristAidPlatform_DataBase;
using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_IDataBase;
using HL_FristAidPlatform_Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Bussiness
{
public class T_Service_ChestPain_PatientLogBLL
{
IT_Service_ChestPain_PatientLog PatientLog = new T_Service_ChestPain_PatientLogDB();
IT_Base_Config IConfig = new T_Base_ConfigDB();
/// <summary>
/// 患者列表
/// </summary>
/// <param name="hospitalGuid"></param>
/// <param name="startTime"></param>
/// <param name="endTime"></param>
/// <returns></returns>
public PatientLogModel GetPatientLogList(string hospitalGuid, string startTime, string endTime)
{
T_Base_Config Config10002 = IConfig.Get(10001);
return PatientLog.GetPatientLogList(hospitalGuid,Convert.ToInt64(Config10002.Config.ToString()), startTime, endTime);
}
}
}