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(); /// /// 患者列表 /// /// /// /// /// 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); } } }