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
{
///
/// 获取创伤患者质控信息
///
///
///
QualityControlModel GetQualityControlByPatientGuid(string guid, long systemModelId);
///
/// 创伤患者质控信息保存
///
///
///
///
///
///
///
bool SaveQualityControl(T_Service_Patient patient, T_Service_Trauma_ReceiveInfo receiveInfo, T_Service_Trauma_Rescue rescue, T_Service_Trauma_OutCome outCome, List lst, T_Service_Trauma_FirstAidInfo first);
}
}