23 lines
803 B
C#
23 lines
803 B
C#
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<T_Service_FirstAid_ChestPainHighRiskScreening> GetList(string hospitalGuid, string name, string idCard, int highRisk, int gender, int pageIndex, int pageSize);
|
|
}
|
|
}
|