using HL_FristAidPlatform_Help;
using HL_FristAidPlatform_Models;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_FirstAid_PatientGCS
{
///
/// 新增CGS评分
///
///
///
bool Add(T_Service_PatientGCS cgs);
///
/// 查看详情
///
///
///
PatientGCSModel Get(string guid);
///
/// 查看所有评分列表
///
///
///
TableModel GetList(string patientGuid);
///
/// 查看所有评分列表
///
///
///
TableModel GetPatientCGSList(string patientGuid);
T_Service_PatientGCS GetPatientGCS(string guid, int flag);
}
}