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 perlist, List ambList, T_Service_FirstAid_Call call, int id); bool HandoverVehicleAndPer(List perlist, List ambList, string guid); } }