StableVersion4.3/HL_FristAidPlatform_IService/TranService/IEmergencyTriageService.cs

19 lines
1.1 KiB
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
using HL_FristAidPlatform_Models;
using System.Collections.Generic;
namespace HL_FristAidPlatform_IDataBase
{
public interface IEmergencyTriageService
{
string EmergencyTriageTran(T_Service_FirstAid_PatientInfo fp, T_Service_FirstAid_HealthCheckup checkup, T_Service_FirstAid_AssistantExamination ass, T_Service_Patient patient, T_Service_ChestPain_FirstAIDInfo info, T_Service_Apoplexy_Prehospital prehospital, long CreatorID);
string AddEmergencyTriage(T_Service_FirstAid_PatientInfo fp, T_Service_FirstAid_HealthCheckup checkup, T_Service_FirstAid_AssistantExamination ass, T_Service_Patient patient);
string RecallDepartment(T_Service_FirstAid_PatientInfo fp);
string AddBatchPatient(T_Service_FirstAid_PatientInfo fp, T_Service_Patient patient);
bool HandoverVehicleAndPer(T_Service_Patient patient, T_Service_FirstAid_HealthCheckup health, List<T_Service_FirstAid_Personnel> perlist, List<T_Base_Ambulance> ambList, T_Service_FirstAid_Call call, int id);
bool HandoverVehicleAndPer(List<T_Service_FirstAid_Personnel> perlist, List<T_Base_Ambulance> ambList, string guid);
}
}