31 lines
844 B
C#
31 lines
844 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
|
|
{
|
|
/// <summary>
|
|
/// 卒中筛查既往病史及控制情况
|
|
/// </summary>
|
|
public interface IT_Service_ApoplexyPastHistory
|
|
{
|
|
/// <summary>
|
|
/// 保存既往病史及控制情况
|
|
/// </summary>
|
|
/// <param name="pastHistory"></param>
|
|
/// <returns></returns>
|
|
bool SaveScreenPastHistory(T_Service_ApoplexyPastHistory pastHistory);
|
|
|
|
|
|
/// <summary>
|
|
/// 获取查既往病史及控制情况
|
|
/// </summary>
|
|
/// <param name="guid"></param>
|
|
/// <returns></returns>
|
|
T_Service_ApoplexyPastHistory GetScreenPastHistory(string patientGuid);
|
|
}
|
|
}
|