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_InformedConsent
{
///
/// 保存患者知情告知
///
///
///
bool SaveInformedConsent(T_Service_InformedConsent Informed);
///
/// 根据患者唯一标识获取知情告知信息
///
///
///
T_Service_InformedConsent GetnformedConsentByPatientGuid(string patientGuid, int flag);
}
}