StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_InformedConsent.cs

28 lines
769 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
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);
}
}