StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_FirstAi...

39 lines
1.4 KiB
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
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
{
/// <summary>
/// 急救措施及辅助检查
/// </summary>
public interface IT_Service_Apoplexy_FirstAidMeasures
{
public T_Service_Apoplexy_FirstAidMeasures AddFirstAidMeasuresInfo(T_Service_Apoplexy_FirstAidMeasures model);
int UpdateFirstAidMeasuresInfo(T_Service_Apoplexy_FirstAidMeasures model);
T_Service_Apoplexy_Prehospital AddPrehospitalInfo(T_Service_Apoplexy_Prehospital model);
int UpdatePrehospitalInfo(T_Service_Apoplexy_Prehospital model);
T_Service_Apoplexy_FirstAidMeasures GetFirstAidMeasures(string patientGuid);
FirstAidMeasuresModel GetByPatientGuidAndEmergencyRoomGUID(string patientGuid);
T_Service_Apoplexy_EmergencyRoom GetEmergencyRoomByPatient(string guid);
public T_Service_Apoplexy_EmergencyRoom AddEmergencyRoomInfo(T_Service_Apoplexy_EmergencyRoom model);
public int UpdateEmergencyRoomInfo(T_Service_Apoplexy_EmergencyRoom model);
bool SaveOrUpdateFirstAidMeasures(T_Service_Apoplexy_FirstAidMeasures first, T_Service_Apoplexy_EmergencyRoom emergency, T_Service_Apoplexy_Prehospital prehospital);
T_Service_Apoplexy_Prehospital GetPrehospitalByPatient(string guid);
}
}