63 lines
2.8 KiB
C#
63 lines
2.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
|
|||
|
{
|
|||
|
public interface IT_Service_Trauma_Assessment
|
|||
|
{
|
|||
|
#region ISSAIS数据
|
|||
|
T_Service_Trauma_ISSAIS GetISSAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
|
|||
|
ISSAISScoreReportModel GetISSAISModelByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
T_Service_Trauma_ISSAIS GetFirstISSAISByPatientGuid(string patientGuid);
|
|||
|
|
|||
|
List<T_Service_Trauma_ISSAIS> GetISSAISListByPatientGuid(string patientGuid);
|
|||
|
T_Service_Trauma_ISSAIS ADDISSAIS(T_Service_Trauma_ISSAIS model);
|
|||
|
|
|||
|
T_Service_Trauma_ISSAIS GetISSAISByGUID(string GUID);
|
|||
|
bool UpdateISSAIS(T_Service_Trauma_ISSAIS model);
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 创伤评估头部
|
|||
|
T_Service_Trauma_HeadAIS ADDHeadAIS(T_Service_Trauma_HeadAIS model);
|
|||
|
bool UpdateHeadAIS(T_Service_Trauma_HeadAIS model);
|
|||
|
T_Service_Trauma_HeadAIS GetHeadAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 创伤评估面部
|
|||
|
T_Service_Trauma_FaceAIS ADDFaceAIS(T_Service_Trauma_FaceAIS model);
|
|||
|
bool UpdateFaceAIS(T_Service_Trauma_FaceAIS model);
|
|||
|
T_Service_Trauma_FaceAIS GetFaceAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 创伤评估胸部、胸椎、横隔AIS评分
|
|||
|
T_Service_Trauma_ChestAIS ADDChestAIS(T_Service_Trauma_ChestAIS model);
|
|||
|
bool UpdateChestAIS(T_Service_Trauma_ChestAIS model);
|
|||
|
T_Service_Trauma_ChestAIS GetChestAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 创伤评估四肢盆骨臀部AIS评分
|
|||
|
T_Service_Trauma_LimbsAIS ADDLimbsAIS(T_Service_Trauma_LimbsAIS model);
|
|||
|
bool UpdateLimbsAIS(T_Service_Trauma_LimbsAIS model);
|
|||
|
T_Service_Trauma_LimbsAIS GetLimbsAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
|
|||
|
#region 创伤评估腹盆腔腰椎AIS评分
|
|||
|
T_Service_Trauma_AbdominalAIS ADDAbdominalAIS(T_Service_Trauma_AbdominalAIS model);
|
|||
|
bool UpdateAbdominalAIS(T_Service_Trauma_AbdominalAIS model);
|
|||
|
T_Service_Trauma_AbdominalAIS GetAbdominalAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
|
|||
|
# region 创伤评估体表其他评分
|
|||
|
T_Service_Trauma_SurfaceOthersAIS ADDSurfaceOthersAIS(T_Service_Trauma_SurfaceOthersAIS model);
|
|||
|
bool UpdateSurfaceOthersAIS(T_Service_Trauma_SurfaceOthersAIS model);
|
|||
|
T_Service_Trauma_SurfaceOthersAIS GetSurfaceOthersAISByPatientGuid(string patientGuid, string ISSGUID);
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|