StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_ApoplexyInterven...

28 lines
792 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_ApoplexyIntervenePastHistory
{
/// <summary>
/// 保存既往病史及控制情况
/// </summary>
/// <param name="pastHistory"></param>
/// <returns></returns>
bool SaveIntervenePastHistory(T_Service_ApoplexyIntervenePastHistory pastHistory);
/// <summary>
/// 获取查既往病史及控制情况
/// </summary>
/// <param name="guid"></param>
/// <returns></returns>
T_Service_ApoplexyIntervenePastHistory GetIntervenePastHistory(string patientGuid);
}
}