28 lines
769 B
C#
28 lines
769 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 保存患者知情告知
|
|
/// </summary>
|
|
/// <param name="Informed"></param>
|
|
/// <returns></returns>
|
|
bool SaveInformedConsent(T_Service_InformedConsent Informed);
|
|
|
|
/// <summary>
|
|
/// 根据患者唯一标识获取知情告知信息
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
T_Service_InformedConsent GetnformedConsentByPatientGuid(string patientGuid, int flag);
|
|
|
|
}
|
|
}
|