43 lines
1.2 KiB
C#
43 lines
1.2 KiB
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_DownwardReferral
|
|
{
|
|
|
|
/// <summary>
|
|
/// 胸痛患者转诊信息
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <param name="hospitalGuid"></param>
|
|
ChestPatientReferralModel GetPatientReferralOfChest(string patientGuid);
|
|
|
|
/// <summary>
|
|
/// 创伤患者转诊信息
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <param name="hospitalGuid"></param>
|
|
public TraumaPatientReferralModel GetPatientReferralOfTrauma(string patientGuid);
|
|
|
|
/// <summary>
|
|
/// 保存下转转诊信息
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool SavePatientReferralInfo(T_Service_DownwardReferral model);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="patientGuid"></param>
|
|
/// <returns></returns>
|
|
T_Service_DownwardReferral GetInfoByGUID(string patientGuid);
|
|
}
|
|
}
|