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_Intervention { /// /// 根据患者GUID急性脑梗死登记表查询数据 /// /// /// /// public T_Service_Intervention_CerebralInfarctionModel GetCerebralInfarctionByPatientGuid(string patientGuid); /// /// 保存急性脑梗死登记表 /// /// /// /// /// /// public bool SaveCerebralInfarction(T_Service_Apoplexy_Prehospital prehospital, T_Service_Apoplexy_TOAST toast, T_Service_Apoplexy_RSZL rszl, T_Service_Apoplexy_XGZL xgzl); /// /// 查询脑出血登记表信息 /// /// /// public T_Service_Intervention_HematencephalonModel GetHematencephalonByPatientGuid(string patientGuid); /// /// 保存急性脑出血登记表 /// /// /// /// /// /// public bool SaveHematencephalon(T_Service_Apoplexy_Prehospital prehospital, T_Service_Apoplexy_NCXZYJC ncxzyjc, T_Service_Apoplexy_NCXSS ncxss, T_Service_Apoplexy_PatientOutcome patientoutcome); /// /// 查询脑出血登记表信息 /// /// /// public T_Service_Intervention_AneurysmModel GetAneurysmByPatientGuid(string patientGuid); /// /// 保存动脉瘤诊疗登记表 /// /// /// /// public bool SaveAneurysm(T_Service_Apoplexy_Prehospital prehospital, T_Service_Apoplexy_DMLSS dmlss); /// /// 查询CEACAS登记表信息 /// /// /// public T_Service_Intervention_CEACASModel GetCEACASByPatientGuid(string patientGuid); /// /// 保存CEACAS登记表 /// /// /// /// /// public bool SaveCEACAS(T_Service_Apoplexy_Prehospital prehospital, T_Service_Apoplexy_CEACZ ceacas, T_Service_Apoplexy_SHYW shyw); } }