StableVersion4.3/HL_FristAidPlatform_IService/TranService/IApoplexyPatientService.cs

45 lines
1.5 KiB
C#

using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IApoplexyPatientService
{
/// <summary>
/// 更新或新增住院治疗信息
/// 1.住院治疗
/// 2.CEA/CAS 术后药物治疗表
/// </summary>
/// <param name="zyyw"></param>
/// <param name="shyw"></param>
/// <returns></returns>
bool SaveHospitalization(T_Service_Apoplexy_ZYYW zyyw, T_Service_Apoplexy_SHYW shyw, T_Service_Apoplexy_NutritionalRisk NutritionalRisk);
/// <summary>
/// 更新或新增患者转归信息
/// </summary>
/// <param name="jkjy"></param>
/// <param name="toast"></param>
/// <param name="kfzl"></param>
/// <param name="outcome"></param>
/// <returns></returns>
bool SaveTurnOver(T_Service_Patient patient, T_Service_Apoplexy_JKJY jkjy, T_Service_Apoplexy_KFZL kfzl, T_Service_Apoplexy_PatientOutcome outcome, T_Service_PatientNIHSS niss, T_Service_PatientGCS gcs);
/// <summary>
/// 修改审核状态
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
bool UpdateAuditStatus(T_Service_Patient model);
/// <summary>
/// 归还标签卡
/// </summary>
/// <param name="patient"></param>
/// <param name="wristStrap"></param>
/// <returns></returns>
bool ReturnWristStrap(T_Service_Patient patient, T_Base_WristStrap wristStrap);
}
}