32 lines
1.1 KiB
C#
32 lines
1.1 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_QualityControl
|
|
{
|
|
/// <summary>
|
|
/// 获取创伤患者质控信息
|
|
/// </summary>
|
|
/// <param name="guid"></param>
|
|
/// <returns></returns>
|
|
QualityControlModel GetQualityControlByPatientGuid(string guid, long systemModelId);
|
|
|
|
/// <summary>
|
|
/// 创伤患者质控信息保存
|
|
/// </summary>
|
|
/// <param name="patient"></param>
|
|
/// <param name="baseInfo"></param>
|
|
/// <param name="receiveInfo"></param>
|
|
/// <param name="rescue"></param>
|
|
/// <param name="outCome"></param>
|
|
/// <returns></returns>
|
|
bool SaveQualityControl(T_Service_Patient patient, T_Service_Trauma_ReceiveInfo receiveInfo, T_Service_Trauma_Rescue rescue, T_Service_Trauma_OutCome outCome, List<T_Service_Trauma_ICUList> lst, T_Service_Trauma_FirstAidInfo first);
|
|
}
|
|
}
|