StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_Archive...

53 lines
2.7 KiB
C#

using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
/// <summary>
/// T_Service_Apoplexy_ArchivesCases
/// </summary>
public interface IT_Service_Apoplexy_ArchivesCases
{
bool UpdateKFZL(ApoplexyBasicinformation model, bool isAdd);
bool UpdateZYYW(ApoplexyBasicinformation model, bool isAdd);
bool UpdateJKJY(ApoplexyBasicinformation model, bool isAdd);
bool UpdateScreenInfo(ApoplexyBasicinformation model, bool isAdd);
bool UpdateArchivesCases(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_CYQK(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_ECG(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_FamilyHistory(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_LaboratoryExam(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_LifeStyle(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_QZZD(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_StrokeFollowup(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_YXJC(ApoplexyBasicinformation model, bool isAdd);
bool UpdateBB_ZYBFZ(ApoplexyBasicinformation model, bool isAdd);
bool UpdatePrehospital(ApoplexyBasicinformation model, bool isAdd);
/// <summary>
/// 删除数据
/// </summary>
bool Delete(string Guid);
/// <summary>
/// 得到一个对象实体
/// </summary>
ApoplexyBasicinformation GetByPatientGuid(string patientGuid);
ApoplexyBasicinformation GetByPatientGuidTo2(string patientGuid);
T_Service_ApoplexyScreenInfo CheckScreenInfo(string patientGuid);
T_Service_Apoplexy_ArchivesCases CheckArchivesCases(string patientGuid);
T_Service_Apoplexy_BB_CYQK CheckCYQK(string patientGuid);
T_Service_Apoplexy_BB_ECG CheckECG(string patientGuid);
T_Service_Apoplexy_BB_FamilyHistory CheckFamilyHistory(string patientGuid);
T_Service_Apoplexy_BB_LaboratoryExam CheckLaboratoryExam(string patientGuid);
T_Service_Apoplexy_BB_LifeStyle CheckLifeStyle(string patientGuid);
T_Service_Apoplexy_BB_QZZD CheckQZZD(string patientGuid);
T_Service_Apoplexy_BB_StrokeFollowup CheckStrokeFollowup(string patientGuid);
T_Service_Apoplexy_BB_YXJC CheckYXJC(string patientGuid);
T_Service_Apoplexy_BB_ZYBFZ CheckZYBFZ(string patientGuid);
T_Service_Apoplexy_Prehospital CheckPrehospital(string patientGuid);
T_Service_Apoplexy_KFZL CheckKFZL(string patientGuid);
T_Service_Apoplexy_ZYYW CheckZYYW(string patientGuid);
T_Service_Apoplexy_JKJY CheckJKJY(string patientGuid);
}
}