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_ApoplexyScreenFamilyHistory { /// /// 保存家族史 /// /// /// bool SaveScreenFamilyHistory(T_Service_ApoplexyScreenFamilyHistory familyHistory); /// /// 获取家族史 /// /// /// T_Service_ApoplexyScreenFamilyHistory GetScreenFamilyHistory(string patientGuid, string flag); } }