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_ApoplexyPastHistory
{
///
/// 保存既往病史及控制情况
///
///
///
bool SaveScreenPastHistory(T_Service_ApoplexyPastHistory pastHistory);
///
/// 获取查既往病史及控制情况
///
///
///
T_Service_ApoplexyPastHistory GetScreenPastHistory(string patientGuid);
}
}