using HL_FristAidPlatform_Help; 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_FirstAid_ChestPainHighRiskScreening { bool Add(T_Service_FirstAid_ChestPainHighRiskScreening model); T_Service_FirstAid_ChestPainHighRiskScreening GetByPhone(string phone); T_Service_FirstAid_ChestPainHighRiskScreening GetByGuid(string guid); T_Service_FirstAid_ChestPainHighRiskScreening GetByIDCard(string idcard); TableModel GetList(string hospitalGuid, string name, string idCard, int highRisk, int gender, int pageIndex, int pageSize); } }