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_DownwardReferral
{
///
/// 胸痛患者转诊信息
///
///
///
ChestPatientReferralModel GetPatientReferralOfChest(string patientGuid);
///
/// 创伤患者转诊信息
///
///
///
public TraumaPatientReferralModel GetPatientReferralOfTrauma(string patientGuid);
///
/// 保存下转转诊信息
///
///
///
bool SavePatientReferralInfo(T_Service_DownwardReferral model);
///
///
///
///
///
T_Service_DownwardReferral GetInfoByGUID(string patientGuid);
}
}