StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_ApoplexyScreenAn...

30 lines
925 B
C#
Raw Permalink 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
{
/// <summary>
/// 卒中筛查血管病变的外科手术或介入治疗情况
/// </summary>
public interface IT_Service_ApoplexyScreenAngiopathy
{
/// <summary>
/// 保存血管病变的外科手术或介入治疗情况
/// </summary>
/// <param name="cervical"></param>
/// <returns></returns>
bool SaveScreenAngiopathy(T_Service_ApoplexyScreenAngiopathy angiopathy);
/// <summary>
/// 获取血管病变的外科手术或介入治疗情况
/// </summary>
/// <param name="guid"></param>
/// <returns></returns>
T_Service_ApoplexyScreenAngiopathy GetScreenAngiopathy(string patientGuid, string flag);
}
}