StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Chest_UpwardRefe...

47 lines
1.8 KiB
C#

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_IDataBase.Service
{
public interface IT_Service_Chest_UpwardReferral
{
/// <summary>
/// 根据患者GUID和医院GUID查询数据
/// </summary>
/// <param name="PatientGuid"></param>
/// <returns></returns>
ChestPatientReferralModel GetByPatientGuid(string PatientGuid,string HospitalGuid);
public T_Service_Chest_UpwardReferral GetByPatientGuid1(string PatientGuid);
/// <summary>
/// 增加一条数据
/// </summary>
T_Service_Chest_UpwardReferral Add(T_Service_Chest_UpwardReferral model);
/// <summary>
/// 更新一条数据
/// </summary>
int Update(T_Service_Chest_UpwardReferral model);
string GetHospitalParentGUID(string receiveHospital);
string GetNetHospitalParentGUID(string hospitalname);
public T_Service_Patient Get(string guid);
T_Service_ChestPain_FirstAIDInfo GetModelOfPatient(string patientGUID);
T_Service_ChestPain_TreatmentInfo GetTreatmentByPatientGUID(string PatientGUID);
T_Service_ChestPain_OutComeInfo GetOutComeByPatientGUID(string PatientGUID);
List<T_Service_ChestPain_ECG> GetECGByPatientGUID(string PatientGUID);
List<T_Service_ChestPain_CTNT> GetCTNTByPatientGUID(string PatientGUID);
void InsertChestData(T_Service_Patient upwardPatient, T_Service_ChestPain_FirstAIDInfo upt_Service_ChestPain_FirstAIDInfo, T_Service_ChestPain_TreatmentInfo upt_Service_ChestPain_Treatment, T_Service_ChestPain_OutComeInfo upt_Service_ChestPain_OutCome, List<T_Service_ChestPain_ECG> uplistECG, List<T_Service_ChestPain_CTNT> uplistCTNT);
}
}