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 { /// /// 急救措施及辅助检查 /// 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); } }