19 lines
528 B
C#
19 lines
528 B
C#
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_IDataBase
|
|
{
|
|
public interface IFirstAidPatientService
|
|
{
|
|
|
|
/// <summary>
|
|
/// 更新患者院前信息
|
|
/// </summary>
|
|
/// <param name="patient"></param>
|
|
/// <param name="info"></param>
|
|
/// <param name="aid"></param>
|
|
/// <param name="prehospital"></param>
|
|
/// <returns></returns>
|
|
bool UpdateFirstAidPatientsInfo(T_Service_Patient patient, T_Service_FirstAid_PatientInfo info);
|
|
}
|
|
}
|