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